Skip to content

Commit

Permalink
prevent hyphen animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahmoud-zino committed Jul 23, 2023
1 parent 9412f53 commit c0e43ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
const cChildren = '';
// Reactive State Classes
$: classesCaretState = open ? caretOpen : caretClosed;
$: classesCaretState = open && $$slots.children ? caretOpen : caretClosed;
// Reactive Classes
$: classesBase = `${cBase} ${$$props.class ?? ''}`;
$: classesSummary = `${cSummary} ${spacing} ${rounded} ${padding} ${hover} ${regionSummary}`;
Expand Down

0 comments on commit c0e43ee

Please sign in to comment.