adminforth 1.3.57-next.10 → 1.3.57-next.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -110,13 +110,13 @@
|
|
|
110
110
|
</div>
|
|
111
111
|
</template>
|
|
112
112
|
|
|
113
|
-
<script setup
|
|
113
|
+
<script setup>
|
|
114
114
|
import BreadcrumbsWithButtons from '@/components/BreadcrumbsWithButtons.vue';
|
|
115
115
|
import ResourceListTable from '@/components/ResourceListTable.vue';
|
|
116
116
|
import { useCoreStore } from '@/stores/core';
|
|
117
117
|
import { useFiltersStore } from '@/stores/filters';
|
|
118
118
|
import { callAdminForthApi, currentQuery, getIcon, setQuery } from '@/utils';
|
|
119
|
-
import { computed, onMounted, ref, watch, nextTick
|
|
119
|
+
import { computed, onMounted, ref, watch, nextTick } from 'vue';
|
|
120
120
|
import { useRoute } from 'vue-router';
|
|
121
121
|
import { showErrorTost } from '@/composables/useFrontendApi'
|
|
122
122
|
import { getCustomComponent, initThreeDotsDropdown } from '@/utils';
|
|
@@ -147,7 +147,7 @@ watch(() => sort, async (to, from) => {
|
|
|
147
147
|
filtersStore.setSort(sort.value);
|
|
148
148
|
}, {deep: true});
|
|
149
149
|
|
|
150
|
-
const rows
|
|
150
|
+
const rows = ref(null);
|
|
151
151
|
const totalRows = ref(0);
|
|
152
152
|
const checkboxes = ref([]);
|
|
153
153
|
|
|
@@ -287,7 +287,7 @@ class SortQuerySerializer {
|
|
|
287
287
|
}
|
|
288
288
|
}
|
|
289
289
|
|
|
290
|
-
let listAutorefresher: any = null;
|
|
290
|
+
// let listAutorefresher: any = null;
|
|
291
291
|
|
|
292
292
|
async function init() {
|
|
293
293
|
|