diff --git a/client/src/components/Page/PageDropdown.vue b/client/src/components/Page/PageDropdown.vue index eb0f9948750a..6aacf596e126 100644 --- a/client/src/components/Page/PageDropdown.vue +++ b/client/src/components/Page/PageDropdown.vue @@ -15,19 +15,19 @@ View - + Edit Content - + Edit Attributes - + Share - + Delete diff --git a/client/src/components/Page/PageList.vue b/client/src/components/Page/PageList.vue index bb7e530d82ac..209d05402f5f 100644 --- a/client/src/components/Page/PageList.vue +++ b/client/src/components/Page/PageList.vue @@ -9,7 +9,7 @@ - + @@ -119,6 +119,7 @@ export default { PageDropdown, PageUrl, }, + mixins: [paginationMixin, filtersMixin], props: { published: { // Render the published workflows version of this grid. @@ -126,7 +127,6 @@ export default { default: true, }, }, - mixins: [paginationMixin, filtersMixin], data() { const fields = this.published ? PUBLISHED_FIELDS : PERSONAL_FIELDS; const implicitFilter = this.published ? "is:published" : null; @@ -142,15 +142,6 @@ export default { implicitFilter: implicitFilter, }; }, - created() { - this.root = getAppRoot(); - // this.services = new Services({ root: this.root }); - }, - watch: { - filter(val) { - this.refresh(); - }, - }, computed: { dataProviderParameters() { const extraParams = { search: this.effectiveFilter }; @@ -161,6 +152,15 @@ export default { return extraParams; }, }, + watch: { + filter(val) { + this.refresh(); + }, + }, + created() { + this.root = getAppRoot(); + // this.services = new Services({ root: this.root }); + }, methods: { onTags: function (tags, index) { const workflow = this.itemsModel[index];