mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
Preferences - Saved Passwords - "Remove" button should not be active if there are no items
This commit is contained in:
parent
53c39834e6
commit
84250c0083
1 changed files with 1 additions and 1 deletions
|
|
@ -326,7 +326,7 @@ function LoadSignons() {
|
|||
function GetTreeSelections() {
|
||||
let selections = [];
|
||||
let select = signonsTree.view.selection;
|
||||
if (select) {
|
||||
if (select && signonsTree.view.rowCount > 0) {
|
||||
let count = select.getRangeCount();
|
||||
let min = {};
|
||||
let max = {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue