diff --git a/src/client/components/queue-chart.vue b/src/client/components/queue-chart.vue index b06bda544..f9c3eccfb 100644 --- a/src/client/components/queue-chart.vue +++ b/src/client/components/queue-chart.vue @@ -100,6 +100,7 @@ export default defineComponent({ borderJoinStyle: 'round', borderColor: '#FFB300', backgroundColor: alpha('#FFB300', 0.1), + yAxisID: 'y2', data: [] }, { label: 'Delayed', diff --git a/src/client/init.ts b/src/client/init.ts index c15374e49..00dcc6024 100644 --- a/src/client/init.ts +++ b/src/client/init.ts @@ -166,8 +166,8 @@ const app = createApp(await ( ui === 'deck' ? import('@client/ui/deck.vue') : ui === 'desktop' ? import('@client/ui/desktop.vue') : ui === 'chat' ? import('@client/ui/chat/index.vue') : - ui === 'pope' ? import('@client/ui/universal.vue') : - import('@client/ui/default.vue') + ui === 'default' ? import('@client/ui/default.vue') : + import('@client/ui/universal.vue') ).then(x => x.default)); if (_DEV_) { diff --git a/src/client/store.ts b/src/client/store.ts index e4b762873..eea3955fa 100644 --- a/src/client/store.ts +++ b/src/client/store.ts @@ -144,7 +144,7 @@ export const defaultStore = markRaw(new Storage('base', { }, useBlurEffect: { where: 'device', - default: false + default: true }, showFixedPostForm: { where: 'device',