Move files to constants/ (#1650)

This commit is contained in:
Chenlei Hu
2024-11-22 18:55:44 -08:00
committed by GitHub
parent ad2c1a0d3e
commit 27b0493306
4 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ import { defineStore } from 'pinia'
import { computed, Ref, ref, toRaw } from 'vue'
import { Keybinding, KeyCombo } from '@/types/keyBindingTypes'
import { useSettingStore } from './settingStore'
import { CORE_KEYBINDINGS } from './coreKeybindings'
import { CORE_KEYBINDINGS } from '@/constants/coreKeybindings'
import type { ComfyExtension } from '@/types/comfy'
export class KeybindingImpl implements Keybinding {

View File

@@ -16,7 +16,7 @@ import type { SettingParams } from '@/types/settingTypes'
import type { TreeNode } from 'primevue/treenode'
import type { ComfyExtension } from '@/types/comfy'
import { buildTree } from '@/utils/treeUtil'
import { CORE_SETTINGS } from '@/stores/coreSettings'
import { CORE_SETTINGS } from '@/constants/coreSettings'
export interface SettingTreeNode extends TreeNode {
data?: SettingParams