Compare commits

...

3 Commits

Author SHA1 Message Date
Christoph Wiechert 26886601f3
Merge 2100e12192 into 2562b84360 2024-02-09 04:07:09 -07:00
semantic-release-bot 2562b84360 chore(release): 4.1.2 [skip ci]
### [4.1.2](https://github.com/custom-cards/button-card/compare/v4.1.1...v4.1.2) (2024-02-01)

### Bug Fixes

* card would sometimes not be clickable ([56c3f44](56c3f44066)), closes [#738](https://github.com/custom-cards/button-card/issues/738) [#759](https://github.com/custom-cards/button-card/issues/759)
* support for new ha-state-icon in 2024.02 ([ab2b393](ab2b3939bc))
2024-02-01 11:21:38 +00:00
Christoph Wiechert 2100e12192
Add support for array-result in triggers_update
Add the ability that a template could return an array of entities.
2024-01-22 13:16:36 +01:00
3 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,11 @@
### [4.1.2](https://github.com/custom-cards/button-card/compare/v4.1.1...v4.1.2) (2024-02-01)
### Bug Fixes
* card would sometimes not be clickable ([56c3f44](https://github.com/custom-cards/button-card/commit/56c3f44066c6bd08fb8a7d8bb8fa679920dc5992)), closes [#738](https://github.com/custom-cards/button-card/issues/738) [#759](https://github.com/custom-cards/button-card/issues/759)
* support for new ha-state-icon in 2024.02 ([ab2b393](https://github.com/custom-cards/button-card/commit/ab2b3939bcce504125853d2ca9312d32f9a3f6d6))
### [4.1.2-dev.2](https://github.com/custom-cards/button-card/compare/v4.1.2-dev.1...v4.1.2-dev.2) (2024-02-01)

View File

@ -1,6 +1,6 @@
{
"name": "button-card",
"version": "4.1.2-dev.2",
"version": "4.1.2",
"description": "Button card for lovelace",
"main": "dist/button-card.js",
"scripts": {

View File

@ -215,7 +215,11 @@ class ButtonCard extends LitElement {
} else if (typeof this._config!.triggers_update === 'string') {
const result = this._getTemplateOrValue(this._stateObj, this._config!.triggers_update);
if (result && result !== 'all') {
this._entities.push(result);
if(Array.isArray(result)) {
result.forEach(entity => this._entities.push(entity));
} else {
this._entities.push(result);
}
} else {
this._config.triggers_update = result;
}