Skip to content

Commit

Permalink
Merge pull request #11191 from qmonmert/typo231024
Browse files Browse the repository at this point in the history
Typo: selectabled=>selectable
  • Loading branch information
murdos authored Oct 23, 2024
2 parents a3b34e7 + 5cfb82d commit 11e0e19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/style/atom/chip/chip.mixin.pug
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
mixin jhlite-chip(options)
- const { selectableHighlighted: isSelectableHighlighted, notSelectableHighlighted: isNotSelectableHighlighted, compacted: isCompacted, extended: isExtended, selected: isSelected, applied: isApplied, hasLeftAnchorPoint, hasRightAnchorPoint } = options || {};
- const selectabledHighlightedClass = isSelectableHighlighted ? '-selectable-highlighted' : null;
- const selectableHighlightedClass = isSelectableHighlighted ? '-selectable-highlighted' : null;
- const notSelectableHighlightedClass = isNotSelectableHighlighted ? '-not-selectable-highlighted' : null;
- const compactedClass = isCompacted ? '-compacted' : null;
- const extendedClass = isExtended ? '-extended' : null;
Expand All @@ -9,7 +9,7 @@ mixin jhlite-chip(options)
- const leftAnchorPointClass = hasLeftAnchorPoint ? '-left-anchor-point' : null;
- const rightAnchorPointClass = hasRightAnchorPoint ? '-right-anchor-point' : null;
.jhlite-chip(
class=[selectabledHighlightedClass, notSelectableHighlightedClass, selectedClass, extendedClass, leftAnchorPointClass, rightAnchorPointClass]
class=[selectableHighlightedClass, notSelectableHighlightedClass, selectedClass, extendedClass, leftAnchorPointClass, rightAnchorPointClass]
)
.jhlite-chip--title(class=appliedClass) Chip title
.jhlite-chip--description(class=compactedClass) Chip description

0 comments on commit 11e0e19

Please sign in to comment.