Browse Source

feat(gui-v2): ditch a-tooltip in currency option

pull/2963/head
Wing-Kam Wong 2 years ago
parent
commit
46bb71114f
  1. 8
      packages/nc-gui-v2/components/smartsheet-column/CurrencyOptions.vue

8
packages/nc-gui-v2/components/smartsheet-column/CurrencyOptions.vue

@ -62,10 +62,6 @@ function filterOption(input: string, option: Option) {
</script> </script>
<template> <template>
<a-tooltip :visible="isMoney && isPg">
<template #title>
<span>{{ message }}</span>
</template>
<a-row> <a-row>
<a-col :span="12"> <a-col :span="12">
<a-form-item v-bind="validateInfos['meta.currency_locale']" label="Currency Locale"> <a-form-item v-bind="validateInfos['meta.currency_locale']" label="Currency Locale">
@ -99,6 +95,8 @@ function filterOption(input: string, option: Option) {
</a-select> </a-select>
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col v-if="isMoney && isPg">
<span class="text-[#FB8C00]">{{ message }}</span>
</a-col>
</a-row> </a-row>
</a-tooltip>
</template> </template>

Loading…
Cancel
Save