Skip to content

Commit

Permalink
refactor(form-field-time-zone-picker): merge classes into parent div
Browse files Browse the repository at this point in the history
merge classes into parent div

COMUI-2316
  • Loading branch information
gavin-everett-genesys committed Oct 10, 2023
1 parent 111831a commit 4581af9
Showing 1 changed file with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,17 +125,12 @@ export class GuxFormFieldTimeZonePicker {
<div
class={{
'gux-input': true,
'gux-input-error': this.hasError
'gux-input-error': this.hasError,
'gux-time-zone-picker-container': true,
'gux-disabled': this.disabled
}}
>
<div
class={{
'gux-time-zone-picker-container': true,
'gux-disabled': this.disabled
}}
>
<slot />
</div>
<slot />
</div>
<GuxFormFieldError show={this.hasError}>
<slot name="error" />
Expand Down

0 comments on commit 4581af9

Please sign in to comment.