mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix eslint errors for empty functions/constructors
This commit is contained in:
parent
8fefc22669
commit
9067b0e397
19 changed files with 50 additions and 37 deletions
|
@ -155,7 +155,7 @@ export function alert(options) {
|
|||
baseAlert({
|
||||
title: options.title || globalize.translate('HeaderAlert'),
|
||||
text: options.message
|
||||
}).then(options.callback || function () {});
|
||||
}).then(options.callback || function () { /* no-op */ });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -20,9 +20,6 @@ const defaultSubtitleAppearanceSettings = {
|
|||
};
|
||||
|
||||
export class UserSettings {
|
||||
constructor() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Bind UserSettings instance to user.
|
||||
* @param {string} - User identifier.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue