We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f90e081 commit ac5aa7bCopy full SHA for ac5aa7b
1 file changed
frontend/src/modules/activity/components/activity-timeline.vue
@@ -267,8 +267,8 @@ const query = ref('');
267
const activities = ref([]);
268
const limit = ref(10);
269
const offset = ref(0);
270
-const joinedAt = dateHelper(props.entity.joinedAt);
271
-const timestamp = ref(joinedAt.isValid() ? joinedAt.toISOString() : dateHelper().toISOString());
+const joinedAt = dateHelper(props.entity.joinedAt ?? props.entity.createdAt);
+const timestamp = ref(joinedAt.isValid() ? joinedAt.toISOString() : new Date(0).toISOString());
272
const noMore = ref(false);
273
const selectedSegment = ref(props.selectedSegment || null);
274
0 commit comments