Skip to content

Commit 054f01e

Browse files
committed
Merge branch 'master' into fix/buttonJustify
2 parents b006877 + d6ede9e commit 054f01e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/store/app/tts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const useTtsPinia = defineStore('ui/tts', () => {
5454
})
5555

5656
// タブ閉じたときには止める
57-
window.addEventListener('unload', () => {
57+
window.addEventListener('pagehide', () => {
5858
stop()
5959
})
6060

src/views/Settings/ThemeTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<!-- eslint-enable vue/valid-v-model --->
6262
<div>
6363
<input
64-
v-model="(val[name as keyof typeof val] as string)"
64+
v-model="val[name as keyof typeof val] as string"
6565
type="color"
6666
:class="$style.colorInput"
6767
/>

0 commit comments

Comments
 (0)