mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-30 02:50:15 -06:00
can disable pop up notifications
This commit is contained in:
parent
3d5038d67d
commit
86ab0f203d
2 changed files with 2 additions and 1 deletions
|
@ -100,6 +100,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
<option value="rightTop"><i class="ti ti-align-box-right-top"></i> {{ i18n.ts.rightTop }}</option>
|
||||
<option value="leftBottom"><i class="ti ti-align-box-left-bottom"></i> {{ i18n.ts.leftBottom }}</option>
|
||||
<option value="rightBottom"><i class="ti ti-align-box-right-bottom"></i> {{ i18n.ts.rightBottom }}</option>
|
||||
<option value=""><i class="ti ti-close"></i> {{ i18n.ts.close }}</option>
|
||||
</MkRadios>
|
||||
|
||||
<MkRadios v-model="notificationStackAxis">
|
||||
|
|
|
@ -392,7 +392,7 @@ export const defaultStore = markRaw(new Storage('base', {
|
|||
},
|
||||
notificationPosition: {
|
||||
where: 'device',
|
||||
default: 'rightBottom' as 'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom',
|
||||
default: 'rightBottom' as 'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom' | null,
|
||||
},
|
||||
notificationStackAxis: {
|
||||
where: 'device',
|
||||
|
|
Loading…
Reference in a new issue