Skip to content

Commit 4263dbf

Browse files
committed
fix: fallback
Signed-off-by: Umberto Sgueglia <usgueglia@contractor.linuxfoundation.org>
1 parent ac5aa7b commit 4263dbf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/modules/activity/components/activity-timeline.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ const query = ref('');
267267
const activities = ref([]);
268268
const limit = ref(10);
269269
const offset = ref(0);
270-
const joinedAt = dateHelper(props.entity.joinedAt ?? props.entity.createdAt);
270+
const joinedAt = dateHelper(props.entity.joinedAt);
271271
const timestamp = ref(joinedAt.isValid() ? joinedAt.toISOString() : new Date(0).toISOString());
272272
const noMore = ref(false);
273273
const selectedSegment = ref(props.selectedSegment || null);

0 commit comments

Comments
 (0)