Move the static properties into the options region

This commit is contained in:
Oliver 2026-01-18 00:31:52 -07:00
parent a5357a90a5
commit 47e693f5b8

View file

@ -13,6 +13,9 @@ export class ArtistApp extends
)) {
// #region Options
static dbType = `Artist`;
static dbPath = `storage/db/artists.json`;
static DEFAULT_OPTIONS = {
tag: `form`,
classes: [
@ -52,9 +55,6 @@ export class ArtistApp extends
// #endregion Options
// #region Instance Data
static dbType = `Artist`;
static dbPath = `storage/db/artists.json`;
/**
* The existing artist data that is being edited, or the default values
*/