diff --git a/frontend/src/lib/components/triggers/CaptureTable.svelte b/frontend/src/lib/components/triggers/CaptureTable.svelte index c4c21c486c0bb..468996925a21a 100644 --- a/frontend/src/lib/components/triggers/CaptureTable.svelte +++ b/frontend/src/lib/components/triggers/CaptureTable.svelte @@ -5,7 +5,7 @@ import ToggleButtonGroup from '../common/toggleButton-v2/ToggleButtonGroup.svelte' import Button from '../common/button/Button.svelte' import CustomPopover from '../CustomPopover.svelte' - import { Webhook, Route, Unplug, Mail } from 'lucide-svelte' + import { Webhook, Route, Unplug, Mail, Play } from 'lucide-svelte' import KafkaIcon from '$lib/components/icons/KafkaIcon.svelte' import { isObject } from '$lib/utils' import { createEventDispatcher, onDestroy } from 'svelte' @@ -303,8 +303,12 @@ } }} disabled={testKind === 'preprocessor' && !hasPreprocessor} + title={isFlow && testKind === 'main' + ? 'Test flow with args' + : 'Apply args to preprocessor'} + startIcon={isFlow && testKind === 'main' ? { icon: Play } : {}} > - {isFlow && testKind === 'main' ? 'Test flow with args' : 'Apply args'} + {isFlow && testKind === 'main' ? 'Test' : 'Apply args'} {/if}