[bugfix] Fix RefreshButton component name conflict (#4773)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Benjamin Lu
2025-08-06 02:28:15 -04:00
committed by GitHub
parent b46f3853a5
commit 5ad9f86a58
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
<MaskEditorButton /> <MaskEditorButton />
<ConvertToSubgraphButton /> <ConvertToSubgraphButton />
<DeleteButton /> <DeleteButton />
<RefreshButton /> <RefreshSelectionButton />
<ExtensionCommandButton <ExtensionCommandButton
v-for="command in extensionToolboxCommands" v-for="command in extensionToolboxCommands"
:key="command.id" :key="command.id"
@@ -39,7 +39,7 @@ import ExtensionCommandButton from '@/components/graph/selectionToolbox/Extensio
import HelpButton from '@/components/graph/selectionToolbox/HelpButton.vue' import HelpButton from '@/components/graph/selectionToolbox/HelpButton.vue'
import MaskEditorButton from '@/components/graph/selectionToolbox/MaskEditorButton.vue' import MaskEditorButton from '@/components/graph/selectionToolbox/MaskEditorButton.vue'
import PinButton from '@/components/graph/selectionToolbox/PinButton.vue' import PinButton from '@/components/graph/selectionToolbox/PinButton.vue'
import RefreshButton from '@/components/graph/selectionToolbox/RefreshButton.vue' import RefreshSelectionButton from '@/components/graph/selectionToolbox/RefreshSelectionButton.vue'
import { useCanvasInteractions } from '@/composables/graph/useCanvasInteractions' import { useCanvasInteractions } from '@/composables/graph/useCanvasInteractions'
import { useExtensionService } from '@/services/extensionService' import { useExtensionService } from '@/services/extensionService'
import { type ComfyCommandImpl, useCommandStore } from '@/stores/commandStore' import { type ComfyCommandImpl, useCommandStore } from '@/stores/commandStore'