Fix action typo

This commit is contained in:
nlighteneddesign
2020-01-11 04:45:59 +00:00
parent c07b07ae31
commit f78d48a482
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ export class BoilerplateCardEditor extends LitElement implements LovelaceCardEdi
get _tap_action(): ActionConfig {
if (this._config) {
return this._config.tap_aciton || { action: 'more-info' };
return this._config.tap_action || { action: 'more-info' };
}
return { action: 'more-info' };
+1 -1
View File
@@ -8,7 +8,7 @@ export interface BoilerplateCardConfig {
show_error?: boolean;
test_gui?: boolean;
entity?: string;
tap_aciton?: ActionConfig;
tap_action?: ActionConfig;
hold_action?: ActionConfig;
double_tap_action?: ActionConfig;
}