Skip to content

Commit

Permalink
[#5026] [#5028] Fix V1 advancement field visibility. Fix ModuleArt se…
Browse files Browse the repository at this point in the history
…ttings config.
  • Loading branch information
Fyorl committed Jan 21, 2025
1 parent b66f53c commit 0a0eedd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dnd5e.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import * as Filter from "./module/filter.mjs";
import * as migrations from "./module/migration.mjs";
import {default as registry} from "./module/registry.mjs";
import * as utils from "./module/utils.mjs";
import {ModuleArt} from "./module/module-art.mjs";
import ModuleArt from "./module/module-art.mjs";
import registerModuleData from "./module/module-registration.mjs";
import Tooltips5e from "./module/tooltips.mjs";

Expand Down
6 changes: 3 additions & 3 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -4130,14 +4130,14 @@
"Abbreviation": "SR"
},
"Turn": {
"Label": "Turn"
"Label": "Each Turn"
},
"TurnEnd": {
"Label": "Round (end of turn)",
"Label": "End of Turn",
"Abbreviation": "Turn Start"
},
"TurnStart": {
"Label": "Round (start of turn)",
"Label": "Start of Turn",
"Abbreviation": "Turn End"
}
},
Expand Down
1 change: 1 addition & 0 deletions less/v1/advancement.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.dnd5e.advancement {
input[type="text"], input[type="number"], select {
height: var(--form-field-height);
color: var(--color-text-dark-primary);
&[readonly] {
color: var(--color-text-dark-6);
box-shadow: none;
Expand Down
2 changes: 2 additions & 0 deletions module/applications/settings/module-art-settings.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import ModuleArt from "../../module-art.mjs";

/**
* A class responsible for allowing GMs to configure art provided by installed modules.
*/
Expand Down
2 changes: 1 addition & 1 deletion module/module-art.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* A class responsible for managing module-provided art in compendia.
*/
export class ModuleArt {
export default class ModuleArt {
constructor() {
/**
* The stored map of actor UUIDs to their art information.
Expand Down

0 comments on commit 0a0eedd

Please sign in to comment.