mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Increase maximum labels value to 60. Fix some eslint errors.
This commit is contained in:
parent
0603bec9f6
commit
6c0700c562
1 changed files with 2 additions and 2 deletions
|
|
@ -26,7 +26,7 @@ keepass.requiredKeePassXC = '2.6.0';
|
|||
keepass.serverPublicKey = '';
|
||||
|
||||
const DEFAULT_FETCH_TIMEOUT = 5000; // ms
|
||||
const MAX_RELATED_ORIGIN_LABELS = 15;
|
||||
const MAX_RELATED_ORIGIN_LABELS = 60;
|
||||
|
||||
const kpActions = {
|
||||
SET_LOGIN: 'set-login',
|
||||
|
|
@ -946,7 +946,7 @@ keepass.getPasskeysRelatedOrigins = async function(rpId) {
|
|||
}
|
||||
|
||||
return [];
|
||||
}
|
||||
};
|
||||
|
||||
keepass.clearErrorMessage = function(tab) {
|
||||
if (tab && page.tabs[tab.id]) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue