Skip to content

Commit

Permalink
fix: originでclassicのファイルを読み込んでいる
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Jan 4, 2024
1 parent c2be59d commit 98c78b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/ui/origin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ SPDX-License-Identifier: AGPL-3.0-only

<script lang="ts" setup>
import { defineAsyncComponent, onMounted, provide, ref, computed, shallowRef } from 'vue';
import XSidebar from './classic.sidebar.vue';
import XSidebar from './origin.sidebar.vue';
import XCommon from './_common_/common.vue';
import { instanceName } from '@/config.js';
import { StickySidebar } from '@/scripts/sticky-sidebar.js';
Expand All @@ -57,7 +57,7 @@ import { PageMetadata, provideMetadataReceiver } from '@/scripts/page-metadata.j
import { defaultStore } from '@/store.js';
import { i18n } from '@/i18n.js';
import { miLocalStorage } from '@/local-storage.js';
const XHeaderMenu = defineAsyncComponent(() => import('./classic.header.vue'));
const XHeaderMenu = defineAsyncComponent(() => import('./origin.header.vue'));
const XWidgets = defineAsyncComponent(() => import('./universal.widgets.vue'));

const DESKTOP_THRESHOLD = 1100;
Expand Down

0 comments on commit 98c78b6

Please sign in to comment.