fix: show inputs for formula type by default

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2021-11-01 15:07:38 +05:30
parent a6e9d6dbae
commit 36b29d4388
2 changed files with 23 additions and 22 deletions

View File

@@ -243,6 +243,7 @@ import VirtualHeaderCell from '../components/virtualHeaderCell'
import colors from '@/mixins/colors'
import TableCell from '@/components/project/spreadsheet/components/cell'
import DynamicStyle from '@/components/dynamicStyle'
import { UITypes } from '~/components/project/spreadsheet/helpers/uiTypes'
export default {
name: 'XcGridView',
@@ -512,12 +513,12 @@ export default {
}
},
enableEditable(column) {
return ((column && column.uidt === 'Attachment') ||
(column && column.uidt === 'SingleSelect') ||
(column && column.uidt === 'MultiSelect') ||
(column && column.uidt === 'DateTime') ||
(column && column.uidt === 'Date') ||
(column && column.uidt === 'Time') ||
return ((column && column.uidt === UITypes.Attachment) ||
(column && column.uidt === UITypes.SingleSelect) ||
(column && column.uidt === UITypes.MultiSelect) ||
(column && column.uidt === UITypes.DateTime) ||
(column && column.uidt === UITypes.Date) ||
(column && column.uidt === UITypes.Time) ||
(this.sqlUi && this.sqlUi.getAbstractType(column) === 'boolean')
)
},