Corrected minor misspellings (#5225)

This commit is contained in:
Jason Lachowsky 2020-03-16 05:56:04 -05:00 committed by GitHub
parent fb6d3cccdc
commit 5a84e34f93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -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) =>

View File

@ -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:

View File

@ -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",