mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Close QuickConnect dialog after login
This commit is contained in:
parent
394a3d9f49
commit
a16d5111b3
3 changed files with 29 additions and 8 deletions
|
@ -13,10 +13,11 @@ import template from './dialog.template.html';
|
|||
|
||||
/* eslint-disable indent */
|
||||
|
||||
function showDialog(options) {
|
||||
function showDialog(options = { dialogOptions: {}, buttons: [] }) {
|
||||
const dialogOptions = {
|
||||
removeOnClose: true,
|
||||
scrollY: false
|
||||
scrollY: false,
|
||||
...options.dialogOptions
|
||||
};
|
||||
|
||||
const enableTvLayout = layoutManager.tv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue