mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Disable CTRL+Click and SHIFT+Click actions on tag panel
This commit is contained in:
parent
0c80db8820
commit
beb5c2627c
1 changed files with 4 additions and 2 deletions
|
@ -115,9 +115,11 @@ class TagOrderStore extends Store {
|
|||
break;
|
||||
}
|
||||
case 'select_tag': {
|
||||
const allowMultiple = !SettingsStore.getValue("feature_communities_v2_prototypes")
|
||||
|
||||
let newTags = [];
|
||||
// Shift-click semantics
|
||||
if (payload.shiftKey) {
|
||||
if (payload.shiftKey && allowMultiple) {
|
||||
// Select range of tags
|
||||
let start = this._state.orderedTags.indexOf(this._state.anchorTag);
|
||||
let end = this._state.orderedTags.indexOf(payload.tag);
|
||||
|
@ -135,7 +137,7 @@ class TagOrderStore extends Store {
|
|||
this._state.orderedTags.slice(start, end + 1).concat(newTags),
|
||||
)];
|
||||
} else {
|
||||
if (payload.ctrlOrCmdKey) {
|
||||
if (payload.ctrlOrCmdKey && allowMultiple) {
|
||||
// Toggle individual tag
|
||||
if (this._state.selectedTags.includes(payload.tag)) {
|
||||
newTags = this._state.selectedTags.filter((t) => t !== payload.tag);
|
||||
|
|
Loading…
Reference in a new issue