Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/data/matter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export interface MatterNodeDiagnostics {
network_type: NetworkType;
node_type: NodeType;
network_name?: string;
ip_adresses: string[];
ip_addresses: string[];
mac_address?: string;
available: boolean;
active_fabrics: MatterFabricData[];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ export class HaDeviceInfoMatter extends SubscribeMixin(LitElement) {
<div class="row">
<span class="name"
>${this.hass.localize(
"ui.panel.config.matter.device_info.ip_adresses"
"ui.panel.config.matter.device_info.ip_addresses"
)}:</span
>
<span class="value"
>${this._nodeDiagnostics.ip_adresses.map(
>${this._nodeDiagnostics.ip_addresses.map(
(ip) => html`${ip}<br />`
)}</span
>
Expand Down
2 changes: 1 addition & 1 deletion src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6587,7 +6587,7 @@
"network_type": "Network type",
"node_type": "Device type",
"network_name": "Network name",
"ip_adresses": "IP address(es)",
"ip_addresses": "IP address(es)",
"mac_address": "MAC address",
"available": "Available?"
},
Expand Down