1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-20 02:38:53 +00:00

Fix left over "script" in default config when using perform action (#21650)

This commit is contained in:
Simon Lamon
2024-08-09 19:55:57 +02:00
committed by GitHub
parent 2832f501d1
commit e0c98e4524

View File

@@ -53,7 +53,7 @@ export class HaServiceAction extends LitElement implements ActionElement {
);
public static get defaultConfig() {
return { service: "", data: {} };
return { action: "", data: {} };
}
protected willUpdate(changedProperties: PropertyValues) {