Skip to content

Commit

Permalink
fix(text-field): lable outside (#847)
Browse files Browse the repository at this point in the history
  • Loading branch information
theJohnnyMe authored Nov 14, 2024
1 parent c689a69 commit d90f65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/text-field/text-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ export class TdsTextField {
return (
<div
class={{
'form-text-field': true,
'form-text-field-nomin': this.noMinWidth,
'form-text-field': !this.focusInput || this.disabled,
'text-field-focus': this.focusInput && !this.disabled,
'text-field-data': this.value !== '' && this.value !== null,
'text-field-container-label-inside':
Expand Down

0 comments on commit d90f65d

Please sign in to comment.