From 0f2afd50f86822dc690e49ef3da58507402dec5e Mon Sep 17 00:00:00 2001 From: Shariq Ansari Date: Sun, 2 Jun 2024 00:17:55 +0530 Subject: [PATCH] fix: minor fix --- frontend/src/components/ViewControls.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ViewControls.vue b/frontend/src/components/ViewControls.vue index 0c2e2dc8..653e3b12 100644 --- a/frontend/src/components/ViewControls.vue +++ b/frontend/src/components/ViewControls.vue @@ -543,7 +543,7 @@ function getIcon(icon, type) { if (isEmoji(icon)) { return h('div', icon) } else if (!icon && type === 'group_by') { - return h(DetailsIcon, { class: 'size-4' }) + return DetailsIcon } return icon || 'list' }