Skip to content

Commit 7881d43

Browse files
committed
[data-manager] Remove column keys
1 parent 817cc6a commit 7881d43

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plugins/data-manager/frontend/public/templates/event-detail.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ <h4>{{i18n('data-manager.event-segmentation')}}</h4>
127127
</span>
128128
</template>
129129
</el-table-column>
130-
<el-table-column :label="i18n('data-manager.last-modified')" column-key="auditDate" prop="auditTs" sortable="custom">
130+
<el-table-column :label="i18n('data-manager.last-modified')" prop="auditTs" sortable="custom">
131131
<template v-slot="rowScope">
132132
<div v-if="rowScope.row.audit && rowScope.row.audit.ts && rowScope.row.auditDate">
133133
<div>{{rowScope.row.auditDate}}</div>
@@ -161,4 +161,4 @@ <h4>{{i18n('data-manager.event-segmentation')}}</h4>
161161
</ul>
162162
</template>
163163
</cly-confirm-dialog>
164-
</div>
164+
</div>

plugins/data-manager/frontend/public/templates/events-default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
</el-table-column>
8383

8484
<el-table-column v-else-if="col.value === 'lastModifiedts'"
85-
prop="lastModifiedts" column-key="lastModifiedDate" sortable="custom" min-width="275" :label="i18n('data-manager.last-modified')">
85+
prop="lastModifiedts" sortable="custom" min-width="275" :label="i18n('data-manager.last-modified')">
8686
<template v-slot="rowScope">
8787
<div v-if="rowScope.row && rowScope.row.lastModifiedts">
8888
<div :data-test-id="'datatable-manage-events-events-last-mod-date-' + rowScope.$index">{{rowScope.row.lastModifiedDate || i18n('data-manager.empty-placeholder') }}</div>

0 commit comments

Comments
 (0)