1
0
Fork 0
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:
Bill Thornton 2020-12-01 13:31:04 -05:00
parent 394a3d9f49
commit a16d5111b3
3 changed files with 29 additions and 8 deletions

View file

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