mirror of
https://github.com/hrfee/jfa-go.git
synced 2026-03-18 13:40:31 +01:00
added POST route for pagination to activity route, a count route, and modified Search and PaginatedList a bit to support lists without search fields (essentially just running an empty search). Visible by clicking on a user's name in the accounts tab.
16 lines
383 B
TypeScript
16 lines
383 B
TypeScript
export abstract class TableRow {
|
|
protected _row: HTMLTableRowElement;
|
|
|
|
remove() {
|
|
this._row.remove();
|
|
}
|
|
asElement(): HTMLTableRowElement {
|
|
return this._row;
|
|
}
|
|
|
|
constructor() {
|
|
this._row = document.createElement("tr");
|
|
this._row.classList.add("border-b", "border-dashed", "dark:border-dotted", "dark:border-stone-700");
|
|
}
|
|
}
|