mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-09 01:20:09 +00:00
32 lines
744 B
Vue
32 lines
744 B
Vue
<template>
|
|
<Button
|
|
v-tooltip.top="{
|
|
value: t('commands.Comfy_Canvas_ToggleSelectedNodes_Bypass.label'),
|
|
showDelay: 1000
|
|
}"
|
|
severity="secondary"
|
|
text
|
|
data-testid="bypass-button"
|
|
class="hover:dark-theme:bg-charcoal-600 hover:bg-[#E7E6E6]"
|
|
@click="toggleBypass"
|
|
>
|
|
<template #icon>
|
|
<i-lucide:ban class="w-4 h-4" />
|
|
</template>
|
|
</Button>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Button from 'primevue/button'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
import { useCommandStore } from '@/stores/commandStore'
|
|
|
|
const { t } = useI18n()
|
|
const commandStore = useCommandStore()
|
|
|
|
const toggleBypass = async () => {
|
|
await commandStore.execute('Comfy.Canvas.ToggleSelectedNodes.Bypass')
|
|
}
|
|
</script>
|