Only display domain name in browser access confirm dialog

* Prevents dialog from growing in width if there is a really long url requesting access.
This commit is contained in:
Jonathan White 2020-08-02 09:07:49 -04:00
parent 60317ffadd
commit 51f3014028
3 changed files with 6 additions and 4 deletions

View file

@ -776,7 +776,7 @@ QList<Entry*> BrowserService::confirmEntries(QList<Entry*>& pwEntriesToConfirm,
config.save(entry);
});
accessControlDialog.setItems(pwEntriesToConfirm, !submitHost.isEmpty() ? submitHost : url, httpAuth);
accessControlDialog.setItems(pwEntriesToConfirm, url, httpAuth);
QList<Entry*> allowedEntries;
if (accessControlDialog.exec() == QDialog::Accepted) {