Skip to content

Commit 1379860

Browse files
committed
Remove pageSize to be ref
Signed-off-by: Gašper Grom <[email protected]>
1 parent 800424e commit 1379860

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/app/components/modules/collection/views/collection-details.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const sort = ref('contributorCount_desc');
8686
const tab = ref('all');
8787
8888
const page = ref(0);
89-
const pageSize = ref(60);
89+
const pageSize = 60;
9090
9191
const projects = ref([]);
9292

frontend/app/components/modules/collection/views/collection-list.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const {pageWidth} = useResponsive();
123123
const {scrollTop} = useScroll();
124124
125125
const page = ref(0);
126-
const pageSize = ref(50);
126+
const pageSize = 50;
127127
const sort = ref('projectCount_desc');
128128
129129
// const stack = ref('');

0 commit comments

Comments
 (0)