Merge pull request #17 from nicxvan/fix/actionTypo

Fix action typo
This commit is contained in:
Ian Richardson
2020-01-10 23:07:35 -06:00
committed by GitHub
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;
}