According to @varjolintu's comment on the PR (https://github.com/keepassxreboot/keepassxc-browser/pull/1662), this bit of code actually just needs to be removed altogether. So, this commit removes it.

This commit is contained in:
jrc03c 2022-07-01 08:58:48 -05:00
parent 07d235b46b
commit c1563edf88

View file

@ -660,11 +660,6 @@ options.initAbout = function() {
$('#tab-about span.kpxcbrVersion').textContent = version;
$('#tab-about span.kpxcbrOS').textContent = platform;
$('#tab-about span.kpxcbrBrowser').textContent = getBrowserId();
// Hides keyboard shortcut configure button if Firefox version is < 60 (API is not compatible)
if (isFirefox() && Number(navigator.userAgent.substring(navigator.userAgent.lastIndexOf('/') + 1)) < 60) {
$('#chrome-only').remove();
}
};
options.initTheme = function() {