mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix bug reporter by sonarqube
This commit is contained in:
parent
7296dbc284
commit
64125541fb
1 changed files with 2 additions and 2 deletions
|
@ -193,11 +193,11 @@ import 'css!./style';
|
||||||
|
|
||||||
export function show(options) {
|
export function show(options) {
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise(resolve => {
|
||||||
|
|
||||||
hasChanges = false;
|
hasChanges = false;
|
||||||
|
|
||||||
showEditor(options, resolve, reject);
|
showEditor(options, resolve);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue