|
@@ -2678,7 +2678,7 @@ window.get_html_element_from_options = async function(options){
|
|
|
options.is_shortcut = options.is_shortcut ?? 0;
|
|
|
options.is_trash = options.is_trash ?? false;
|
|
|
options.metadata = options.metadata ?? '';
|
|
|
- options.multiselectable = options.multiselectable ?? true;
|
|
|
+ options.multiselectable = (!options.multiselectable || options.multiselectable === true) ? true : false;
|
|
|
options.shortcut_to = options.shortcut_to ?? '';
|
|
|
options.shortcut_to_path = options.shortcut_to_path ?? '';
|
|
|
options.immutable = (options.immutable === false || options.immutable === 0 || options.immutable === undefined ? 0 : 1);
|