diff --git a/src/panels/config/integrations/integration-panels/bluetooth/dialog-bluetooth-device-info.ts b/src/panels/config/integrations/integration-panels/bluetooth/dialog-bluetooth-device-info.ts index 635da34b03..25c09a9284 100644 --- a/src/panels/config/integrations/integration-panels/bluetooth/dialog-bluetooth-device-info.ts +++ b/src/panels/config/integrations/integration-panels/bluetooth/dialog-bluetooth-device-info.ts @@ -81,10 +81,8 @@ class DialogBluetoothDeviceInfo extends LitElement implements HassDialog { ${Object.entries(this._params.entry.manufacturer_data).map( ([key, value]) => html` - ${key} - - - ${this.showDataAsHex(value)} + ${key} + ${this.showDataAsHex(value)} ` )} @@ -97,10 +95,23 @@ class DialogBluetoothDeviceInfo extends LitElement implements HassDialog { ${Object.entries(this._params.entry.service_data).map( ([key, value]) => html` - ${key} + ${key} + ${this.showDataAsHex(value)} + ` + )} + + + +

+ ${this.hass.localize("ui.panel.config.bluetooth.service_uuids")} +

+ + + ${this._params.entry.service_uuids.map( + (uuid) => html` - ${this.showDataAsHex(value)} + ` )} diff --git a/src/translations/en.json b/src/translations/en.json index d04fa625a1..02e9a055a9 100644 --- a/src/translations/en.json +++ b/src/translations/en.json @@ -5378,6 +5378,7 @@ "advertisement_data": "Advertisement data", "manufacturer_data": "Manufacturer data", "service_data": "Service data", + "service_uuids": "Service UUIDs", "copy_to_clipboard": "[%key:ui::panel::config::automation::editor::copy_to_clipboard%]" }, "thread": {
${uuid}