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