1
0
Fork 0
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:
grafixeyehero 2020-06-09 23:03:23 +03:00
parent 7296dbc284
commit 64125541fb

View file

@ -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);
}); });
} }