diff --git a/src/panels/config/integrations/integration-panels/bluetooth/bluetooth-config-dashboard.ts b/src/panels/config/integrations/integration-panels/bluetooth/bluetooth-config-dashboard.ts index a09be536b4..281cab9695 100644 --- a/src/panels/config/integrations/integration-panels/bluetooth/bluetooth-config-dashboard.ts +++ b/src/panels/config/integrations/integration-panels/bluetooth/bluetooth-config-dashboard.ts @@ -160,7 +160,9 @@ export class BluetoothConfigDashboard extends LitElement { "ui.panel.config.bluetooth.used_connection_slot_allocations" )} .value=${this._getUsedAllocations(allocationsUsed, allocationsTotal)} - .tooltip=${`${allocationsUsed}/${allocationsTotal}`} + .tooltip=${allocations.allocated.length > 0 + ? `${allocationsUsed}/${allocationsTotal} (${allocations.allocated.join(", ")})` + : `${allocationsUsed}/${allocationsTotal}`} > `; }