Fix for UI flags. Enabled the indexing UI for autocolumn in edit mode
This commit is contained in:
parent
95e5c4e749
commit
1b4d043164
|
@ -133,12 +133,12 @@
|
||||||
editableColumn?.type !== JSON_TYPE &&
|
editableColumn?.type !== JSON_TYPE &&
|
||||||
editableColumn?.subtype !== AUTO_COLUMN_SUB_TYPES.CREATED_BY &&
|
editableColumn?.subtype !== AUTO_COLUMN_SUB_TYPES.CREATED_BY &&
|
||||||
editableColumn?.subtype !== AUTO_COLUMN_SUB_TYPES.UPDATED_BY &&
|
editableColumn?.subtype !== AUTO_COLUMN_SUB_TYPES.UPDATED_BY &&
|
||||||
editableColumn?.type !== FORMULA_TYPE &&
|
editableColumn?.type !== FORMULA_TYPE
|
||||||
!editableColumn.autocolumn
|
|
||||||
$: canBeDisplay =
|
$: canBeDisplay =
|
||||||
editableColumn?.type !== LINK_TYPE &&
|
editableColumn?.type !== LINK_TYPE &&
|
||||||
editableColumn?.type !== AUTO_TYPE &&
|
editableColumn?.type !== AUTO_TYPE &&
|
||||||
(editableColumn?.type !== JSON_TYPE) & !editableColumn.autocolumn
|
editableColumn?.type !== JSON_TYPE &&
|
||||||
|
!editableColumn.autocolumn
|
||||||
$: canBeRequired =
|
$: canBeRequired =
|
||||||
editableColumn?.type !== LINK_TYPE &&
|
editableColumn?.type !== LINK_TYPE &&
|
||||||
!uneditable &&
|
!uneditable &&
|
||||||
|
|
Loading…
Reference in New Issue