diff --git a/src/components/submission/feed-entry.vue b/src/components/submission/feed-entry.vue
index 02c8e9303..7c94606a6 100644
--- a/src/components/submission/feed-entry.vue
+++ b/src/components/submission/feed-entry.vue
@@ -47,16 +47,14 @@ except according to the terms contained in the LICENSE file.
-
- {{ entry.details.entity.currentVersion.label }}
+
+ {{ entityDetails.currentVersion.label }}
-
- {{ entry.details.entity.uuid }}
-
+ {{ entityDetails.uuid }}
-
- {{ entry.details.entity.dataset }}
+
+ {{ entityDetails.dataset }}
@@ -65,16 +63,14 @@ except according to the terms contained in the LICENSE file.
-
- {{ entry.details.entity.currentVersion.label }}
+
+ {{ entityDetails.currentVersion.label }}
-
- {{ entry.details.entity.uuid }}
-
+ {{ entityDetails.uuid }}
-
- {{ entry.details.entity.dataset }}
+
+ {{ entityDetails.dataset }}
@@ -159,6 +155,9 @@ export default {
? this.entry.details.reviewState
: 'edited';
},
+ entityDetails() {
+ return this.entry.details.entity;
+ },
comment() {
return this.entry.notes != null ? this.entry.notes : this.entry.body;
},