mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix undefined type in libraryoptionseditor
This commit is contained in:
parent
b30469654f
commit
29e7c4775b
1 changed files with 1 additions and 1 deletions
|
@ -463,7 +463,7 @@ define(["globalize", "dom", "emby-checkbox", "emby-select", "emby-input"], funct
|
||||||
|
|
||||||
if (!typeOptions) {
|
if (!typeOptions) {
|
||||||
typeOptions = {
|
typeOptions = {
|
||||||
Type: type
|
Type: originalTypeOption.Type
|
||||||
};
|
};
|
||||||
options.TypeOptions.push(typeOptions);
|
options.TypeOptions.push(typeOptions);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue