Remap to noun-adjective on report-table/table-report

This commit is contained in:
Eli Ribble 2026-03-11 23:20:38 +00:00
parent 7231bf0aad
commit a049cef651
No known key found for this signature in database
2 changed files with 6 additions and 8 deletions

View file

@ -1,6 +1,4 @@
// report-table.js
class ReportTable extends HTMLElement {
class TableReport extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: "open" });
@ -206,4 +204,4 @@ class ReportTable extends HTMLElement {
}
// Register the custom element
customElements.define("report-table", ReportTable);
customElements.define("table-report", TableReport);