UI: Fix typo the examples help for show/hide action cell button

This commit is contained in:
Vladyslav Prykhodko 2024-08-31 22:34:19 +03:00
parent 04e4116f30
commit 92cfffab1e

View File

@ -36,7 +36,7 @@ return widgetContext.currentUser.authority === 'CUSTOMER_USER';
* Display action only if the entity in the row is device and has type `thermostat`: * Display action only if the entity in the row is device and has type `thermostat`:
```javascript ```javascript
return data && data.entityType === 'DEVICE' && data.Type === 'thermostat'; return data && data.entityType === 'Device' && data.Type === 'thermostat';
{:copy-code} {:copy-code}
``` ```