Skip to content

Commit

Permalink
Add default double tap action to floorplan element rules
Browse files Browse the repository at this point in the history
  • Loading branch information
exetico committed Dec 18, 2024
1 parent c372fef commit 41cc8cc
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 41cc8cc

Please sign in to comment.