Don't popout the channel edit/create modal

master
WolverinDEV 2021-01-22 16:54:00 +01:00
parent 9e63ab4dc9
commit db20070b49
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export type ChannelEditChangedPermission = { permission: PermissionType, value:
export const spawnChannelEditNew = (connection: ConnectionHandler, channel: ChannelEntry | undefined, parent: ChannelEntry | undefined, callback: ChannelEditCallback) => {
const controller = new ChannelEditController(connection, channel, parent);
const modal = spawnModal("channel-edit", [controller.uiEvents.generateIpcDescription(), typeof channel !== "object"], {
popedOut: true,
popedOut: false,
popoutable: true
});
modal.show().then(undefined);