diff --git a/apps/central/src/components/entity/metadata-row.vue b/apps/central/src/components/entity/metadata-row.vue
index 1117b7420..fccf69c1b 100644
--- a/apps/central/src/components/entity/metadata-row.vue
+++ b/apps/central/src/components/entity/metadata-row.vue
@@ -11,6 +11,17 @@ except according to the terms contained in the LICENSE file.
-->
+
+
+
+
+
+
{{ $n(rowNumber, 'noGrouping') }}
@@ -19,7 +30,7 @@ except according to the terms contained in the LICENSE file.
{{ entity.__system.creatorName }}
-
+
@@ -33,22 +44,12 @@ except according to the terms contained in the LICENSE file.
{{ $n(entity.__system.updates, 'default') }}
-
-
-
+
-
-
-
@@ -98,13 +99,9 @@ defineEmits(['selectionChanged']);
max-width: 250px;
}
- .action-cell {
+ .last-updated-cell {
padding-top: 4px;
padding-bottom: 4px;
-
- // Ensure that the column is wide enough that EntityActions does not wrap.
- min-width: 170px;
- &:lang(id) { min-width: 215px; }
}
.col-content {
diff --git a/apps/central/src/components/entity/table.vue b/apps/central/src/components/entity/table.vue
index 73ab604b6..32c9ca33c 100644
--- a/apps/central/src/components/entity/table.vue
+++ b/apps/central/src/components/entity/table.vue
@@ -14,13 +14,14 @@ except according to the terms contained in the LICENSE file.
:data="odataEntities.value" key-prop="__id"
:frozen-only="properties == null" divider @action="afterAction">
+
{{ $t('common.rowNumber') }}
{{ $t('header.createdBy') }}
{{ $t('header.createdAt') }}
-
{{ $t('header.updatedAtAndActions') }}
+
{{ $t('header.updatedAt') }}
{{ $t('header.deletedAt') }}
@@ -141,7 +142,12 @@ defineExpose({ afterUpdate, afterDelete });
margin-top: 0;
}
-th.col-deleted-at { color: $color-danger; }
+ th.col-deleted-at { color: $color-danger; }
+
+ .col-actions {
+ width: 0;
+ padding: 0;
+ }
}
@@ -150,9 +156,8 @@ th.col-deleted-at { color: $color-danger; }
"en": {
"header": {
// This is the text of a column header of a table of Entities. The column
- // shows when each Entity was last updated, as well as actions that can be
- // taken on the Entity.
- "updatedAtAndActions": "Last Updated / Actions",
+ // shows when each Entity was last updated.
+ "updatedAt": "Last Updated",
// Heading of the column that shows Entity deletion timestamp
"deletedAt": "Deleted at"
}
diff --git a/apps/central/src/components/field-key/list.vue b/apps/central/src/components/field-key/list.vue
index 172aece77..8120fe618 100644
--- a/apps/central/src/components/field-key/list.vue
+++ b/apps/central/src/components/field-key/list.vue
@@ -33,11 +33,12 @@ except according to the terms contained in the LICENSE file.
+
@@ -218,6 +219,10 @@ export default {
&.frozen-only .table-freeze-frozen {
width: 100%;
}
+ .col-actions {
+ width: 0;
+ padding: 0;
+ }
}
@@ -240,8 +245,6 @@ export default {
],
"header": {
"lastUsed": "Last Used",
- // Header for the table column that shows the last used date and action buttons.
- "lastUsedAndActions": "{lastUsed} / {actions}",
// Header for the table column that shows QR codes to configure data collection clients such as ODK Collect.
"configureClient": "Configure Client"
},
diff --git a/apps/central/src/components/field-key/row.vue b/apps/central/src/components/field-key/row.vue
index df307c240..fbfea5126 100644
--- a/apps/central/src/components/field-key/row.vue
+++ b/apps/central/src/components/field-key/row.vue
@@ -11,27 +11,7 @@ except according to the terms contained in the LICENSE file.
-->