Fix styling of NetworkDropdown dialogs

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2020-03-16 12:00:56 +00:00
parent 6f27c4c17a
commit 82a37ba0ad
4 changed files with 18 additions and 4 deletions

View file

@ -169,7 +169,8 @@ const NetworkDropdown = ({onOptionChange, protocols = {}, selectedServerName, se
b: serverName => <b>{ serverName }</b>,
}),
button: _t("Remove"),
});
fixedWidth: false,
}, "mx_NetworkDropdown_dialog");
const [ok] = await finished;
if (!ok) return;
@ -218,7 +219,8 @@ const NetworkDropdown = ({onOptionChange, protocols = {}, selectedServerName, se
hasCancel: false,
placeholder: _t("Server name"),
validator: validServer,
});
fixedWidth: false,
}, "mx_NetworkDropdown_dialog");
const [ok, newServer] = await finished;
if (!ok) return;