Skip to content

Commit

Permalink
fix: Fix the link to the last update details (#4352)
Browse files Browse the repository at this point in the history
The prop struct changed therefore update the type and  usage, generate correct link
  • Loading branch information
connoratrug authored Oct 14, 2024
1 parent 4958f7f commit 26387e8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions apps/central/src/components/LastUpdateField.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<span>
<a :href="`/${lastUpdate.schema}/settings/#/changelog`">
<a :href="`/${lastUpdate.schemaName}/settings/#/changelog`">
{{ timeStamp }} ({{ lastUpdate.tableName }})
</a>
</span>
Expand All @@ -11,9 +11,11 @@ import { computed } from "vue";
const props = defineProps<{
lastUpdate: {
stamp: number;
stamp: string;
tableName: string;
schema: string;
schemaName: string;
userId: string;
operation: string;
};
}>();
Expand Down

0 comments on commit 26387e8

Please sign in to comment.