diff --git a/web/app/components/base/tag-input/index.tsx b/web/app/components/base/tag-input/index.tsx index a03a8af7e4..f3df585d48 100644 --- a/web/app/components/base/tag-input/index.tsx +++ b/web/app/components/base/tag-input/index.tsx @@ -99,7 +99,8 @@ const TagInput: FC = ({ isInWorkflow && 'max-w-[146px]', ` system-xs-regular overflow-hidden rounded-md py-1 - ${focused && isSpecialMode && 'border border-dashed border-divider-deep px-1.5'} + ${isSpecialMode && 'border border-transparent px-1.5'} + ${focused && isSpecialMode && 'border-dashed border-divider-deep'} `)} onFocus={() => setFocused(true)} onBlur={handleBlur}