Skip to content

Commit b37f522

Browse files
committed
fix: change isPageLoaded to a constant in ListView.vue
1 parent bdfa1d7 commit b37f522

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adminforth/spa/src/views/ListView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const DEFAULT_PAGE_SIZE = 10;
178178
179179
const pageSize = computed(() => coreStore.resource?.options?.listPageSize || DEFAULT_PAGE_SIZE);
180180
181-
let isPageLoaded = ref(false);
181+
const isPageLoaded = ref(false);
182182
183183
async function getList() {
184184
rows.value = null;

0 commit comments

Comments
 (0)