We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e7dc21 commit 8259c23Copy full SHA for 8259c23
src/exceptions-table.ts
@@ -159,7 +159,7 @@ export class ExceptionsTable extends LitElement {
159
}
160
161
162
- render() {
+ private renderTable() {
163
return html`
164
<div class="table-container">
165
<table>
@@ -219,4 +219,11 @@ export class ExceptionsTable extends LitElement {
219
<exception-dialog></exception-dialog>
220
`;
221
222
+
223
+ render() {
224
+ if (this.filteredEntries.length === 0) {
225
+ return html`<div>No entries found.</div>`;
226
+ }
227
+ return this.renderTable();
228
229
0 commit comments