mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-28 11:46:42 +00:00
Corrected minor misspellings (#5225)
This commit is contained in:
parent
fb6d3cccdc
commit
5a84e34f93
@ -10,7 +10,7 @@ export interface LoggedError {
|
|||||||
exception: string;
|
exception: string;
|
||||||
count: number;
|
count: number;
|
||||||
// unix timestamp in seconds
|
// unix timestamp in seconds
|
||||||
first_occured: number;
|
first_occurred: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const fetchSystemLog = (hass: HomeAssistant) =>
|
export const fetchSystemLog = (hass: HomeAssistant) =>
|
||||||
|
@ -77,12 +77,12 @@ class DialogSystemLogDetail extends LitElement {
|
|||||||
<br />
|
<br />
|
||||||
${item.count > 0
|
${item.count > 0
|
||||||
? html`
|
? html`
|
||||||
First occured:
|
First occurred:
|
||||||
${formatSystemLogTime(
|
${formatSystemLogTime(
|
||||||
item.first_occured,
|
item.first_occurred,
|
||||||
this.hass!.language
|
this.hass!.language
|
||||||
)}
|
)}
|
||||||
(${item.count} occurences) <br />
|
(${item.count} occurrences) <br />
|
||||||
`
|
`
|
||||||
: ""}
|
: ""}
|
||||||
Last logged:
|
Last logged:
|
||||||
|
@ -84,7 +84,7 @@ export class SystemLogCard extends LitElement {
|
|||||||
"ui.panel.developer-tools.tabs.logs.multiple_messages",
|
"ui.panel.developer-tools.tabs.logs.multiple_messages",
|
||||||
"time",
|
"time",
|
||||||
formatSystemLogTime(
|
formatSystemLogTime(
|
||||||
item.first_occured,
|
item.first_occurred,
|
||||||
this.hass!.language
|
this.hass!.language
|
||||||
),
|
),
|
||||||
"counter",
|
"counter",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user