Skip to content

Commit 3dd1736

Browse files
committed
fix(ui-text-input): restore inline cursor flow next to selected tags
INSTUI-5050
1 parent bd73345 commit 3dd1736

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • packages/ui-text-input/src/TextInput/v2

packages/ui-text-input/src/TextInput/v2/styles.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ const generateStyle = (
206206
flexDirection: 'row'
207207
},
208208
beforeElement: {
209-
...(interaction === 'disabled' && { opacity: 0.5 }),
209+
...(interaction === 'disabled'
210+
? { opacity: 0.5 }
211+
: { display: 'contents' }),
210212
label: 'textInput__beforeElement'
211213
},
212214
afterElement: {

0 commit comments

Comments
 (0)