diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue index b4996c258..69bcbb232 100644 --- a/client/src/views/Home.vue +++ b/client/src/views/Home.vue @@ -169,6 +169,9 @@ $t("footer.attribution") }} + + {{ gitCommit }} + @@ -185,6 +188,8 @@ export const HomeView = defineComponent({ setup() { const store = useStore(); + const gitCommit = __COMMIT_HASH__; + async function createTempRoom() { await createRoomHelper(store); } @@ -196,6 +201,7 @@ export const HomeView = defineComponent({ return { createTempRoom, cardHeight, + gitCommit, }; }, }); diff --git a/client/src/views/Room.vue b/client/src/views/Room.vue index d702b0e9d..f5241cab6 100644 --- a/client/src/views/Room.vue +++ b/client/src/views/Room.vue @@ -177,6 +177,9 @@ {{ $t("footer.privacy-policy") }} + + {{ gitCommit }} +