Skip to content

Commit

Permalink
refactor: move icon component folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maizify committed Nov 2, 2022
1 parent 9966f63 commit 5a100ee
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import copy from 'copy-text-to-clipboard';
import * as tool from '../lib/tool';
import Icon from '../component/icon.svelte';
import * as tool from '../../lib/tool';
import Icon from './icon.svelte';
export let content: any = '';
export let handler: (content: any) => string = undefined;
Expand Down
2 changes: 1 addition & 1 deletion src/log/logCommand.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { onMount, onDestroy, createEventDispatcher } from 'svelte';
import Icon from '../component/icon.svelte';
import Icon from '../component/icon/icon.svelte';
import { getLastIdentifier } from './logTool';
import { VConsoleLogModel } from './log.model';
import Style from './logCommand.less';
Expand Down
2 changes: 1 addition & 1 deletion src/log/logRow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<script lang="ts">
import { onMount, onDestroy, createEventDispatcher } from 'svelte';
import * as tool from '../lib/tool';
import IconCopy from '../component/iconCopy.svelte';
import IconCopy from '../component/icon/iconCopy.svelte';
import LogValue from './logValue.svelte';
import LogTree from './logTree.svelte';
import Style from './logRow.less';
Expand Down
2 changes: 1 addition & 1 deletion src/network/network.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { onMount, onDestroy } from 'svelte';
import * as tool from '../lib/tool';
import IconCopy from '../component/iconCopy.svelte';
import IconCopy from '../component/icon/iconCopy.svelte';
import { requestList } from './network.model';
import Style from './network.less';
import RecycleScroller from '../component/recycleScroller/recycleScroller.svelte';
Expand Down
4 changes: 2 additions & 2 deletions src/storage/storage.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import Icon from '../component/icon.svelte';
import IconCopy from '../component/iconCopy.svelte';
import Icon from '../component/icon/icon.svelte';
import IconCopy from '../component/icon/iconCopy.svelte';
import { VConsoleStorageModel, storageStore } from './storage.model';
import { getStringWithinLength } from '../lib/tool';
Expand Down

0 comments on commit 5a100ee

Please sign in to comment.