diff --git a/packages/nc-gui/components/project/spreadsheet/components/Cell.vue b/packages/nc-gui/components/project/spreadsheet/components/Cell.vue index d19ab48087..260e721fc4 100644 --- a/packages/nc-gui/components/project/spreadsheet/components/Cell.vue +++ b/packages/nc-gui/components/project/spreadsheet/components/Cell.vue @@ -11,11 +11,14 @@ + - + + + {{ value }} @@ -30,12 +33,14 @@ import SetListCell from '~/components/project/spreadsheet/components/cell/SetLis import EnumCell from '~/components/project/spreadsheet/components/cell/EnumCell' import EditableAttachmentCell from '~/components/project/spreadsheet/components/editableCell/EditableAttachmentCell' import BooleanCell from '~/components/project/spreadsheet/components/cell/BooleanCell' +import EmailCell from '~/components/project/spreadsheet/components/cell/EmailCell' +import RatingCell from '~/components/project/spreadsheet/components/editableCell/RatingCell' export default { name: 'TableCell', - components: { TimeCell, DateTimeCell, DateCell, JsonCell, UrlCell, EditableAttachmentCell, EnumCell, SetListCell, BooleanCell }, + components: { RatingCell, EmailCell, TimeCell, DateTimeCell, DateCell, JsonCell, UrlCell, EditableAttachmentCell, EnumCell, SetListCell, BooleanCell }, mixins: [cell], - props: ['value', 'dbAlias', 'isLocked', 'selected'], + props: ['value', 'dbAlias', 'isLocked', 'selected', 'column'], computed: { title() { if (typeof this.value === 'string') { return this.value } diff --git a/packages/nc-gui/components/project/spreadsheet/components/EditColumn.vue b/packages/nc-gui/components/project/spreadsheet/components/EditColumn.vue index 0f1b4d1f6a..c426556905 100644 --- a/packages/nc-gui/components/project/spreadsheet/components/EditColumn.vue +++ b/packages/nc-gui/components/project/spreadsheet/components/EditColumn.vue @@ -137,6 +137,21 @@ @input="newColumn.altered = newColumn.altered || 2" /> + + + + + + + + + + +