Skip to content

Commit

Permalink
Merge pull request #106 from MelleD/fix-title-card-layout
Browse files Browse the repository at this point in the history
Set layout card back to grid display
  • Loading branch information
MelleD committed May 26, 2024
2 parents f9925e7 + 71c54fb commit 5721309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ExpanderCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

<ha-card
class={`expander-card ${config.clear ? 'clear' : ''}`}
style="--expander-card-display:{config['expander-card-display']}; --gap:{open ? config['expanded-gap'] : config.gap}; --padding:{config.padding}; --expander-card-background:{config['expander-card-background']}"
style="--expander-card-display:{config['title-card'] ? "grid" : config['expander-card-display']}; --gap:{open ? config['expanded-gap'] : config.gap}; --padding:{config.padding}; --expander-card-background:{config['expander-card-background']}"

Check warning on line 76 in src/ExpanderCard.svelte

View workflow job for this annotation

GitHub Actions / Build

This line has a length of 246. Maximum allowed is 140

Check warning on line 76 in src/ExpanderCard.svelte

View workflow job for this annotation

GitHub Actions / Build

Strings must use singlequote

Check warning on line 76 in src/ExpanderCard.svelte

View workflow job for this annotation

GitHub Actions / Create tagged release

This line has a length of 246. Maximum allowed is 140

Check warning on line 76 in src/ExpanderCard.svelte

View workflow job for this annotation

GitHub Actions / Create tagged release

Strings must use singlequote
>
{#if config['title-card']}
<div class={`title-card-header${config['title-card-button-overlay'] ? '-overlay' : ''}`}>
Expand Down

0 comments on commit 5721309

Please sign in to comment.