Skip to content

Commit ec27e97

Browse files
committed
Use <p> for "loading" and "no records" labels.
1 parent 731e229 commit ec27e97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,11 +399,11 @@ export class App extends LitElement {
399399
}
400400

401401
if (this.loading) {
402-
return html`<div>Loading...</div>`;
402+
return html`<p>Loading...</p>`;
403403
}
404404

405405
if (this.displayRecords.length === 0) {
406-
return html`<div>No records found.</div>`;
406+
return html`<p>No records found.</p>`;
407407
}
408408
return html`
409409
<p>

0 commit comments

Comments
 (0)