Skip to content

Commit

Permalink
Merge pull request #492 from ExperienceLovelace/bugfix/allow_double_t…
Browse files Browse the repository at this point in the history
…ap_action_default_config

Add default double tap action to floorplan element rules
  • Loading branch information
exetico authored Dec 18, 2024
2 parents c372fef + 41cc8cc commit 5c7c868
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/floorplan/floorplan-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1059,6 +1059,11 @@ export class FloorplanElement extends LitElement {
rule.hover_info_filter === undefined
? defaultRule.hover_info_filter
: rule.hover_info_filter;

rule.double_tap_action =
rule.double_tap_action === undefined
? defaultRule.double_tap_action
: rule.double_tap_action;
}
}

Expand Down

0 comments on commit 5c7c868

Please sign in to comment.