mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
always use const when possible
This commit is contained in:
parent
eec822ef34
commit
a5776e98a7
8 changed files with 80 additions and 80 deletions
|
@ -14,7 +14,7 @@ import 'css!components/viewManager/viewContainer';
|
|||
}
|
||||
|
||||
controllerUrl = Dashboard.getPluginUrl(controllerUrl);
|
||||
let apiUrl = ApiClient.getUrl('/web/' + controllerUrl);
|
||||
const apiUrl = ApiClient.getUrl('/web/' + controllerUrl);
|
||||
return import(apiUrl).then((ControllerFactory) => {
|
||||
options.controllerFactory = ControllerFactory;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue