mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-06 06:46:04 +02:00
rename
This commit is contained in:
@@ -144,8 +144,8 @@
|
||||
import { Toggle } from '../../components/ui/toggle';
|
||||
import { createColumns } from './columns.jsx';
|
||||
import { localeIncludes } from '../../shared/utils';
|
||||
import removeConfusables, { removeWhitespace } from '../../service/confusables';
|
||||
import { router } from '../../plugin/router';
|
||||
import removeConfusables, { removeWhitespace } from '../../services/confusables';
|
||||
import { router } from '../../plugins/router';
|
||||
import { useDataTableScrollHeight } from '../../composables/useDataTableScrollHeight';
|
||||
import { useVrcxVueTable } from '../../lib/table/useVrcxVueTable';
|
||||
import { showUserDialog } from '../../coordinators/userCoordinator';
|
||||
|
||||
@@ -100,7 +100,7 @@ vi.mock('../../../coordinators/friendRelationshipCoordinator', () => ({
|
||||
handleFriendDelete: (...args) => mocks.handleFriendDelete(...args)
|
||||
}));
|
||||
|
||||
vi.mock('../../../plugin/router', () => ({
|
||||
vi.mock('../../../plugins/router', () => ({
|
||||
router: {
|
||||
push: (...args) => mocks.routerPush(...args)
|
||||
}
|
||||
@@ -115,7 +115,7 @@ vi.mock('../../../api', () => ({
|
||||
}
|
||||
}));
|
||||
|
||||
vi.mock('../../../service/confusables', () => ({
|
||||
vi.mock('../../../services/confusables', () => ({
|
||||
default: (value) => value,
|
||||
removeWhitespace: (value) => String(value ?? '').replace(/\s+/g, '')
|
||||
}));
|
||||
|
||||
@@ -3,7 +3,7 @@ import { ArrowUpDown, UserMinus } from 'lucide-vue-next';
|
||||
import { Button } from '../../components/ui/button';
|
||||
import { Checkbox } from '../../components/ui/checkbox';
|
||||
import { TooltipWrapper } from '../../components/ui/tooltip';
|
||||
import { i18n } from '../../plugin';
|
||||
import { i18n } from '../../plugins';
|
||||
import {
|
||||
formatDateFilter,
|
||||
getFaviconUrl,
|
||||
|
||||
Reference in New Issue
Block a user