diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2024-07-12 16:39:09 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-12 16:39:09 +0900 |
| commit | 76b1c74a375dc3de5588995803d445a2951aea32 (patch) | |
| tree | f6f59fb410e1db268a72aa178e4854160b3144b3 | |
| parent | fix(frontend): フォーカスの挙動を修正 (#14158) (diff) | |
| download | sharkey-76b1c74a375dc3de5588995803d445a2951aea32.tar.gz sharkey-76b1c74a375dc3de5588995803d445a2951aea32.tar.bz2 sharkey-76b1c74a375dc3de5588995803d445a2951aea32.zip | |
fix(frontend): use proper import path
| -rw-r--r-- | packages/frontend/src/os.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/os.ts b/packages/frontend/src/os.ts index 17ee6e294a..5e332533ef 100644 --- a/packages/frontend/src/os.ts +++ b/packages/frontend/src/os.ts @@ -25,7 +25,7 @@ import { MenuItem } from '@/types/menu.js'; import copyToClipboard from '@/scripts/copy-to-clipboard.js'; import { showMovedDialog } from '@/scripts/show-moved-dialog.js'; import { getHTMLElementOrNull } from '@/scripts/get-dom-node-or-null.js'; -import { focusParent } from './scripts/focus.js'; +import { focusParent } from '@/scripts/focus.js'; export const openingWindowsCount = ref(0); |