mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-24 10:24:15 +02:00
enhnace(frontend): リロードのサジェストをダイアログではなくバナー表示に
This commit is contained in:
12
packages/frontend/src/utility/reload-suggest.ts
Normal file
12
packages/frontend/src/utility/reload-suggest.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
import { ref } from 'vue';
|
||||
|
||||
export const shouldSuggestReload = ref(false);
|
||||
|
||||
export function suggestReload() {
|
||||
shouldSuggestReload.value = true;
|
||||
}
|
||||
Reference in New Issue
Block a user