mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Fix version error message on options page
This commit is contained in:
parent
1ed925f9df
commit
015b209412
1 changed files with 1 additions and 1 deletions
|
|
@ -276,7 +276,7 @@ options.showKeePassXCVersions = function(response) {
|
|||
$('#tab-about span.kpxcVersion').text(response.current);
|
||||
$('#tab-general-settings button.checkUpdateKeePassXC:first').attr('disabled', false);
|
||||
|
||||
if (response.current.startsWith('2.6') || response.current === '2.5.3-snapshot') {
|
||||
if (response.current.startsWith('2.6') || response.current.includes('snapshot')) {
|
||||
$('#tab-general-settings #versionRequiredAlert').hide();
|
||||
} else {
|
||||
$('#tab-general-settings #showGroupNameInAutocomplete').attr('disabled', true);
|
||||
|
|
|
|||
Loading…
Reference in a new issue