Feat(SQL, UI): Logic for Get-Many SQL Stored Procedures refactored to use Calc Stored Procedures and Dog Command Links page styling improved.

This commit is contained in:
2025-07-01 21:21:51 +01:00
parent caeb13429a
commit 0d1e644e6c
102 changed files with 6971 additions and 1797 deletions

View File

@@ -0,0 +1,20 @@
import BasePage from "../base.js";
export default class PageDogHome extends BasePage {
static hash = hashPageDogHome;
constructor(router) {
super(router);
}
initialize() {
this.sharedInitialize();
this.hookupFiltersDog();
this.hookupDogHome();
}
leave() {
super.leave();
}
}