This commit is contained in:
NoriDev 2023-09-25 16:54:08 +09:00
parent 8a4b682cb5
commit 2936641e0f
13 changed files with 45 additions and 45 deletions

View file

@ -42,7 +42,7 @@ export default defineComponent({
type: Function, // Note => date string
required: false,
default: undefined,
}
},
},
setup(props, { slots, expose }) {

View file

@ -76,7 +76,7 @@ import { useRouter } from '@/router.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
import { i18n } from '@/i18n.js';
import MkFolder from '@/components/MkFolder.vue';
import MkSwitch from "@/components/MkSwitch.vue";
import MkSwitch from '@/components/MkSwitch.vue';
const Sortable = defineAsyncComponent(() => import('vuedraggable').then(x => x.default));

View file

@ -54,27 +54,27 @@ export const defaultStore = markRaw(new Storage('base', {
default: 0,
},
tlHomeHintClosed: {
where: "device",
where: 'device',
default: false,
},
tlLocalHintClosed: {
where: "device",
where: 'device',
default: false,
},
tlMediaHintClosed: {
where: "device",
where: 'device',
default: false,
},
tlSocialHintClosed: {
where: "device",
where: 'device',
default: false,
},
tlCatHintClosed: {
where: "device",
where: 'device',
default: false,
},
tlGlobalHintClosed: {
where: "device",
where: 'device',
default: false,
},
keepCw: {

View file

@ -65,7 +65,7 @@ const dev = _DEV_;
let notifications = $ref<Misskey.entities.Notification[]>([]);
function onNotification(notification: Misskey.entities.Notification, isClient: boolean = false) {
function onNotification(notification: Misskey.entities.Notification, isClient = false) {
if ($i.mutingNotificationTypes.includes(notification.type)) return;
if (document.visibilityState === 'visible') {