Browse Source

refactor(gui-v2): button size

pull/2828/head
Wing-Kam Wong 2 years ago
parent
commit
be5008a625
  1. 4
      packages/nc-gui-v2/components/template/Editor.vue

4
packages/nc-gui-v2/components/template/Editor.vue

@ -3,7 +3,6 @@ import { useToast } from 'vue-toastification'
import type { ColumnType, TableType } from 'nocodb-sdk' import type { ColumnType, TableType } from 'nocodb-sdk'
import { isVirtualCol, UITypes } from 'nocodb-sdk' import { isVirtualCol, UITypes } from 'nocodb-sdk'
import { Form } from 'ant-design-vue' import { Form } from 'ant-design-vue'
import type { SizeType } from 'ant-design-vue/es/config-provider'
import { computed, onMounted } from '#imports' import { computed, onMounted } from '#imports'
import MdiTableIcon from '~icons/mdi/table' import MdiTableIcon from '~icons/mdi/table'
import MdiStringIcon from '~icons/mdi/alpha-a' import MdiStringIcon from '~icons/mdi/alpha-a'
@ -54,7 +53,6 @@ const tableColumns = [
const templateForm = reactive<{ tables: object[] }>({ const templateForm = reactive<{ tables: object[] }>({
tables: [], tables: [],
}) })
const buttonSize = ref<SizeType>('large')
const hasSelectColumn = ref(<boolean[]>{}) const hasSelectColumn = ref(<boolean[]>{})
const expansionPanel = ref(<number[]>[]) const expansionPanel = ref(<number[]>[])
const editableTn = ref(<boolean[]>{}) const editableTn = ref(<boolean[]>{})
@ -285,7 +283,7 @@ const importTemplate = async () => {
<a-spin :spinning="isImporting" :tip="importingTip" size="large"> <a-spin :spinning="isImporting" :tip="importingTip" size="large">
<a-card :title="editorTitle"> <a-card :title="editorTitle">
<template #extra> <template #extra>
<a-button type="primary" @click="importTemplate" :size="buttonSize"> <a-button type="primary" @click="importTemplate" size="large">
{{ $t('activity.import') }} {{ $t('activity.import') }}
</a-button> </a-button>
</template> </template>

Loading…
Cancel
Save