Skip to content

Commit

Permalink
fix missing spaces in select classes
Browse files Browse the repository at this point in the history
  • Loading branch information
josemarluedke committed Dec 26, 2023
1 parent 39d8ef6 commit c326874
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/forms/src/components/form-select.gts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import PowerSelectMultiple from 'ember-power-select/components/power-select-mult
import useFrontileClass from '@frontile/core/helpers/use-frontile-class';
import FormField from './form-field';
import { concat } from '@ember/helper';
export { type Select } from 'ember-power-select/components/power-select';
export type { Select } from 'ember-power-select/components/power-select';

export interface FormSelectArgs extends PowerSelectArgs {
/** The input field label */
Expand Down Expand Up @@ -164,19 +164,19 @@ export default class FormSelect extends Component<FormSelectSignature> {
@onBlur={{this.handleFocusOut}}
@onOpen={{this.handleOpen}}
@onClose={{this.handleClose}}
@ariaDescribedBy="{{if @hint f.hintId}}{{if
@ariaDescribedBy="{{if @hint f.hintId}} {{if
this.showErrorFeedback
(concat " " f.feedbackId)
}}{{if @ariaDescribedBy (concat " " @ariaDescribedBy)}}"
@ariaLabelledBy="{{if @label f.id}}{{if
(concat ' ' f.feedbackId)
}}{{if @ariaDescribedBy (concat ' ' @ariaDescribedBy)}}"
@ariaLabelledBy="{{if @label f.id}} {{if
@ariaLabelledBy
(concat " " @ariaLabelledBy)
(concat ' ' @ariaLabelledBy)
}}"
@ariaInvalid={{if this.showErrorFeedback "true"}}
@triggerClass="{{@triggerClass}}{{if
@triggerClass="{{@triggerClass}} {{if
@size
(concat "ember-power-select-trigger-" @size)
}}{{useFrontileClass "form-select" @size part="select"}}"
(concat 'ember-power-select-trigger-' @size)
}} {{useFrontileClass 'form-select' @size part="select"}}"
@highlightOnHover={{@highlightOnHover}}
@placeholderComponent={{@placeholderComponent}}
@searchMessage={{@searchMessage}}
Expand Down

0 comments on commit c326874

Please sign in to comment.