From 98dd7043b3b35808be2ac5ce40ffbfca25c5b9a3 Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Mon, 11 Jul 2022 20:57:47 +0200 Subject: [PATCH] feat(gui-v2,testing): use 5 col grid for grid view Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com> --- .../nc-gui-v2/pages/projects/index/index.vue | 28 +++++++++++++------ 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/packages/nc-gui-v2/pages/projects/index/index.vue b/packages/nc-gui-v2/pages/projects/index/index.vue index 8e44fe2664..4c309d7f96 100644 --- a/packages/nc-gui-v2/pages/projects/index/index.vue +++ b/packages/nc-gui-v2/pages/projects/index/index.vue @@ -16,7 +16,7 @@ const { projects } = defineProps() const { $e } = useNuxtApp() -const { getColorByIndex } = useColors() +const { getColorByIndex } = useColors(true) const openProject = async (project: ProjectType) => { await navigateTo(`/nc/${project.id}`) @@ -32,12 +32,13 @@ const formatTitle = (title: string) =>