Browse Source

fix(nc-gui): Type '"sm"' is not assignable to type 'NcButtonSize

pull/7855/head
Ramesh Mane 9 months ago
parent
commit
5695241e59
  1. 4
      packages/nc-gui/components/smartsheet/toolbar/FieldsMenu.vue

4
packages/nc-gui/components/smartsheet/toolbar/FieldsMenu.vue

@ -470,7 +470,7 @@ useMenuCloseOnEsc(open)
<NcButton <NcButton
v-if="!filterQuery" v-if="!filterQuery"
class="nc-fields-show-all-fields !text-gray-500 !w-1/2" class="nc-fields-show-all-fields !text-gray-500 !w-1/2"
size="sm" size="small"
type="ghost" type="ghost"
@click="showAllColumns = !showAllColumns" @click="showAllColumns = !showAllColumns"
> >
@ -479,7 +479,7 @@ useMenuCloseOnEsc(open)
<NcButton <NcButton
v-if="!isPublic && !filterQuery" v-if="!isPublic && !filterQuery"
class="nc-fields-show-system-fields !text-gray-500 !w-1/2" class="nc-fields-show-system-fields !text-gray-500 !w-1/2"
size="sm" size="small"
type="ghost" type="ghost"
@click="showSystemField = !showSystemField" @click="showSystemField = !showSystemField"
> >

Loading…
Cancel
Save