Skip to content

Commit

Permalink
Template URI to use MODULE_NAMESPACE
Browse files Browse the repository at this point in the history
  • Loading branch information
ccjmk committed Mar 18, 2022
1 parent 7e48359 commit 6f714e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/module/widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Command from './command';
import Suggestion from './suggestion';
import CommandHandler from './commandHandler';
import { getCommandSchemaWithoutArguments } from './utils/commandUtils';
import { MODULE_NAME, localize } from './utils/moduleUtils';
import { localize, MODULE_NAMESPACE } from './utils/moduleUtils';
import { getSetting, SETTING } from './settings';

const ACTIVE = 'active';
Expand All @@ -14,7 +14,7 @@ export default class Widget extends Application {
popOut: false,
minimizable: false,
resizable: false,
template: `modules/${MODULE_NAME}/templates/widget.html`,
template: `modules/${MODULE_NAMESPACE}/templates/widget.html`,
});
this.handler = handler;
}
Expand Down

0 comments on commit 6f714e6

Please sign in to comment.