From 47e693f5b83b76ae57e96cecb1bb3abbc3b89a73 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 18 Jan 2026 00:31:52 -0700 Subject: [PATCH] Move the static properties into the options region --- module/apps/Artist.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/apps/Artist.mjs b/module/apps/Artist.mjs index a179561..1aaf80d 100644 --- a/module/apps/Artist.mjs +++ b/module/apps/Artist.mjs @@ -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 */