diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-13 14:05:04 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-13 14:05:04 +0900 |
| commit | 3ced310f77c2511366c421314a024885810a9082 (patch) | |
| tree | 58a4405cc81a35d54abab808eeb1cb665f253e3c /packages/frontend/src/components/grid/MkDataCell.vue | |
| parent | refactor(frontend): cond -> scope (diff) | |
| download | sharkey-3ced310f77c2511366c421314a024885810a9082.tar.gz sharkey-3ced310f77c2511366c421314a024885810a9082.tar.bz2 sharkey-3ced310f77c2511366c421314a024885810a9082.zip | |
refactor(frontend): organize use functions
Diffstat (limited to 'packages/frontend/src/components/grid/MkDataCell.vue')
| -rw-r--r-- | packages/frontend/src/components/grid/MkDataCell.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/grid/MkDataCell.vue b/packages/frontend/src/components/grid/MkDataCell.vue index f813bcb73f..f7f6f5c140 100644 --- a/packages/frontend/src/components/grid/MkDataCell.vue +++ b/packages/frontend/src/components/grid/MkDataCell.vue @@ -90,7 +90,7 @@ SPDX-License-Identifier: AGPL-3.0-only <script setup lang="ts"> import { computed, defineAsyncComponent, nextTick, onMounted, onUnmounted, ref, shallowRef, toRefs, watch } from 'vue'; import { GridEventEmitter } from '@/components/grid/grid.js'; -import { useTooltip } from '@/utility/use-tooltip.js'; +import { useTooltip } from '@/use/use-tooltip.js'; import * as os from '@/os.js'; import { equalCellAddress, getCellAddress } from '@/components/grid/grid-utils.js'; import type { Size } from '@/components/grid/grid.js'; |