Skip to content

Commit 2135adf

Browse files
Copilotlouislam
andauthored
Fix swapped up/down sound in Pushover component (#6458)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
1 parent 91edeae commit 2135adf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/notifications/Pushover.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
<option>2</option>
1818
</select>
1919

20-
<label for="pushover-sound-down" class="form-label">{{ $t("Notification Sound") }} - Up</label>
20+
<label for="pushover-sound-down" class="form-label">{{ $t("Notification Sound") }} - Down</label>
2121
<select id="pushover-sound-down" v-model="$parent.notification.pushoversounds" class="form-select">
2222
<option v-for="sound in soundOptions" :key="sound" :value="sound">
2323
{{ $t(`pushoversounds ${sound}`) }}
2424
</option>
2525
</select>
2626

27-
<label for="pushover-sound-up" class="form-label">{{ $t("Notification Sound") }} - Down</label>
27+
<label for="pushover-sound-up" class="form-label">{{ $t("Notification Sound") }} - Up</label>
2828
<select id="pushover-sound-up" v-model="$parent.notification.pushoversounds_up" class="form-select">
2929
<option v-for="sound in soundOptions" :key="sound" :value="sound">
3030
{{ $t(`pushoversounds ${sound}`) }}

0 commit comments

Comments
 (0)