Browse Source

refactor(gui-v2): rename event name with camel case

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/2860/head
Pranav C 2 years ago
parent
commit
b076201e7f
  1. 4
      packages/nc-gui-v2/components/smartsheet-toolbar/ColumnFilter.vue
  2. 2
      packages/nc-gui-v2/components/smartsheet-toolbar/ColumnFilterMenu.vue

4
packages/nc-gui-v2/components/smartsheet-toolbar/ColumnFilter.vue

@ -11,7 +11,7 @@ import MdiAddIcon from '~icons/mdi/plus'
const { nested = false, parentId, autoSave = true } = defineProps<{ nested?: boolean; parentId?: string; autoSave: boolean }>() const { nested = false, parentId, autoSave = true } = defineProps<{ nested?: boolean; parentId?: string; autoSave: boolean }>()
const emit = defineEmits(['update:filters-length']) const emit = defineEmits(['update:filtersLength'])
const meta = inject(MetaInj) const meta = inject(MetaInj)
const activeView = inject(ActiveViewInj) const activeView = inject(ActiveViewInj)
@ -91,7 +91,7 @@ const logicalOps = [
watch( watch(
() => filters?.value?.length, () => filters?.value?.length,
(length) => { (length) => {
emit('update:filters-length', length ?? 0) emit('update:filtersLength', length ?? 0)
}, },
) )

2
packages/nc-gui-v2/components/smartsheet-toolbar/ColumnFilterMenu.vue

@ -39,7 +39,7 @@ const applyChanges = async () => {
ref="filterComp" ref="filterComp"
class="nc-table-toolbar-menu" class="nc-table-toolbar-menu"
:auto-save="autosave" :auto-save="autosave"
@update:filters-length="filtersLength = $event" @update:filtersLength="filtersLength = $event"
> >
<div class="d-flex align-end mt-2 min-h-[30px]" @click.stop> <div class="d-flex align-end mt-2 min-h-[30px]" @click.stop>
<a-checkbox id="col-filter-checkbox" v-model:checked="autosave" class="col-filter-checkbox" hide-details dense> <a-checkbox id="col-filter-checkbox" v-model:checked="autosave" class="col-filter-checkbox" hide-details dense>

Loading…
Cancel
Save