hi
so ive setup the browser mod dashboard several years ago… from a search on google about dashboards and i liked what the guy did copy and pasted it… and when browser mod 2 came out had to adjust it…
now i wanted to add text to the title of the popup but it doesnt add… when i do the developer page — actionts and browser mod i do a title and submit but it doesnt even pop up anymore… i remember it used to work years ago pop up but now doesnt… so i cant test to get it to work
here is the code i working with… i trying to add text above the 2 buttons that show up
- type: custom:button-card
template: bootstrap_button
class: col-xl-2 col-lg-2 col-md-3 col-sm-4 col-4
entity: group.hotwater_tanks
state_display: |
[[[
var count = states['sensor.hot_water_tanks_on'].state;
if (count == 1)
return '1 Tank On';
else return count + ' Tanks On';
]]]
tap_action:
action: fire-dom-event
browser_mod:
service: browser_mod.popup
data:
title: This Is A test
large: true
hide_header: false
content:
title: test
type: custom:bootstrap-grid-card
global_col_class: col-xl-2 col-lg-2 col-md-3 col-xl-4 col-4
cards:
- type: row
cards:
- entity: switch.hot_water_tank_building
name: Building Tank
type: entity-button
icon: mdi:water
- entity: switch.hot_water_tank_house
name: House Tank
type: entity-button
icon: mdi:water




