Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Veilza committed Aug 29, 2024
1 parent 29a473b commit c3116c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/api/def/base-definition-class.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class BaseDefinitionClass {
// If mods are enabled, check for a modification to the definition
if (this.modsEnabled) {
const checkModification = modifications.filter(definition => definition.id === key)

// If there are modifications, update the value's properties
if (checkModification.length > 0) {
value.rename = checkModification[0].rename
Expand Down
2 changes: 1 addition & 1 deletion system/api/def/were-forms.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { BaseDefinitionClass } from './base-definition-class.js'

export class WereForms extends BaseDefinitionClass {
// Override the initializeLabels method to add extra functionality
static initializeLabels() {
static initializeLabels () {
super.initializeLabels()

for (const [, value] of Object.entries(this)) {
Expand Down

0 comments on commit c3116c9

Please sign in to comment.