Move component to correct folder
This commit is contained in:
parent
9e2b354b0a
commit
88b0f63cdc
|
@ -1,9 +1,9 @@
|
|||
<script lang="ts">
|
||||
import { createEventDispatcher } from 'svelte'
|
||||
import { getProfile } from './lib/Profiles.svelte'
|
||||
import { setChatSettingValue } from './lib/Storage.svelte'
|
||||
import type { Chat, ChatSetting, ChatSettings } from './lib/Types.svelte'
|
||||
import { autoGrowInputOnEvent } from './lib/Util.svelte'
|
||||
import { getProfile } from './Profiles.svelte'
|
||||
import { setChatSettingValue } from './Storage.svelte'
|
||||
import type { Chat, ChatSetting, ChatSettings } from './Types.svelte'
|
||||
import { autoGrowInputOnEvent } from './Util.svelte'
|
||||
|
||||
export let setting:ChatSetting
|
||||
export let chatSettings:ChatSettings
|
|
@ -26,7 +26,7 @@
|
|||
} from '@fortawesome/free-solid-svg-icons/index'
|
||||
import { exportProfileAsJSON } from './Export.svelte'
|
||||
import { afterUpdate } from 'svelte'
|
||||
import ChatSettingField from '../ChatSettingField.svelte'
|
||||
import ChatSettingField from './ChatSettingField.svelte'
|
||||
|
||||
export let chatId:number
|
||||
export const show = () => { showSettings() }
|
||||
|
|
Loading…
Reference in New Issue