Browse Source

User Status: Display hint that DND mutes all notifications

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
tags/v20.0.0beta3
Georg Ehrke 3 years ago
parent
commit
dbef68b397
No account linked to committer's email address

+ 2
- 2
apps/user_status/js/user-status-menu.js
File diff suppressed because it is too large
View File


+ 1
- 1
apps/user_status/js/user-status-menu.js.map
File diff suppressed because it is too large
View File


+ 4
- 4
apps/user_status/src/App.vue View File

@@ -38,15 +38,15 @@
:key="status.type"
:icon="status.icon"
:close-after-click="true"
:title="status.label"
@click.prevent.stop="changeStatus(status.type)">
{{ status.label }}
{{ status.subline }}
</ActionButton>
<ActionButton
icon="icon-rename"
:close-after-click="true"
@click.prevent.stop="openModal">
{{ $t('user_status', 'Set custom status') }}
</ActionButton>
:title="$t('user_status', 'Set custom status')"
@click.prevent.stop="openModal" />
</Actions>
<SetStatusModal
v-if="isModalOpen"

+ 1
- 0
apps/user_status/src/services/statusOptionsService.js View File

@@ -38,6 +38,7 @@ const getAllStatusOptions = () => {
}, {
type: 'dnd',
label: t('user_status', 'Do not disturb'),
subline: t('user_status', 'Mute all notifications'),
icon: 'icon-user-status-dnd',

}, {

Loading…
Cancel
Save