Browse Source

revert(gui-v2): remove duplicating results

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
pull/2716/head
Braks 2 years ago committed by Pranav C
parent
commit
aa8e53b5f1
  1. 2
      packages/nc-gui-v2/pages/projects/index.vue

2
packages/nc-gui-v2/pages/projects/index.vue

@ -33,7 +33,7 @@ const route = useRoute()
const { $api, $state } = useNuxtApp()
const response = await $api.project.list({})
const projects = $ref(Array(100).fill(...response.list))
const projects = $ref(response.list)
const activePage = $ref(navDrawerOptions[0].title)
</script>

Loading…
Cancel
Save