Feat: Remove the exception comment field from the agent form #3221 (#9153)

### What problem does this PR solve?
Feat: Remove the exception comment field from the agent form #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-08-01 15:19:33 +08:00
committed by GitHub
parent 4b98119c52
commit 2a79f4fc7f
7 changed files with 49 additions and 58 deletions

View File

@ -111,9 +111,7 @@ export const SelectWithSearch = forwardRef<
>
{value ? (
<span className="flex min-w-0 options-center gap-2">
<span className="text-lg leading-none truncate">
{selectLabel}
</span>
<span className="leading-none truncate">{selectLabel}</span>
</span>
) : (
<span className="text-muted-foreground">Select value</span>
@ -159,9 +157,7 @@ export const SelectWithSearch = forwardRef<
disabled={option.disabled}
onSelect={handleSelect}
>
<span className="text-lg leading-none">
{option.label}
</span>
<span className="leading-none">{option.label}</span>
{value === option.value && (
<CheckIcon size={16} className="ml-auto" />
@ -179,9 +175,7 @@ export const SelectWithSearch = forwardRef<
disabled={group.disabled}
onSelect={handleSelect}
>
<span className="text-lg leading-none">
{group.label}
</span>
<span className="leading-none">{group.label}</span>
{value === group.value && (
<CheckIcon size={16} className="ml-auto" />