Skip to content

Commit e5eab2a

Browse files
committed
fix: specify type for devCommits to enhance type safety
1 parent c10973e commit e5eab2a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dashboard/src/layouts/full/vertical-header/VerticalHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ let dashboardHasNewVersion = ref(false);
3636
let dashboardCurrentVersion = ref('');
3737
let version = ref('');
3838
let releases = ref([]);
39-
let devCommits = ref([]);
39+
let devCommits = ref<{ sha: string; date: string; message: string }[]>([]);
4040
let updatingDashboardLoading = ref(false);
4141
let installLoading = ref(false);
4242

0 commit comments

Comments
 (0)