From 7fd65ede5f29558358e175e30cf678cdef31d772 Mon Sep 17 00:00:00 2001 From: James Collins Date: Sun, 5 Mar 2023 20:23:21 +1000 Subject: [PATCH] update merging strign --- resources/js/store/ApplicationStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/store/ApplicationStore.ts b/resources/js/store/ApplicationStore.ts index 2875179..1e83a39 100644 --- a/resources/js/store/ApplicationStore.ts +++ b/resources/js/store/ApplicationStore.ts @@ -19,7 +19,7 @@ export const useApplicationStore = defineStore({ actions: { async setDynamicTitle(title: string) { this.$state.dynamicTitle = title; - document.title = "STEMMechanics | " + title; + document.title = `STEMMechanics | ${title}`; }, clearDynamicTitle() {