Skip to content

Commit 49e1941

Browse files
[25.1] Fix shift+click range select not working in history list
Also make the `expectedKeyDownClass` more exact. Fixes #21071
1 parent 03f8f3a commit 49e1941

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client/src/components/History/HistoryList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ const {
189189
);
190190
await onDeleteHistory();
191191
},
192-
expectedKeyDownClass: "history-card",
192+
expectedKeyDownClass: "history-card-in-list",
193193
getAttributeForRangeSelection(item) {
194-
return `g-card-${item.id}`;
194+
return `g-card-history-${item.id}`;
195195
},
196196
});
197197

client/src/components/Workflow/List/WorkflowList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ const {
138138
);
139139
deleteInModal();
140140
},
141-
expectedKeyDownClass: "workflow-card",
141+
expectedKeyDownClass: "workflow-card-in-list",
142142
getAttributeForRangeSelection(item) {
143143
return `g-card-${item.id}`;
144144
},

0 commit comments

Comments
 (0)