mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-13 17:38:19 +01:00
fix clicking on expand icon (> or v) was triggering an onclick / reloading mail folder
This commit is contained in:
parent
ef67e21930
commit
a14109d9c6
@ -162,8 +162,9 @@ export class Et2Tree extends Et2WidgetWithSelectMixin(LitElement)
|
|||||||
//Sl-Trees handle their own onClick events
|
//Sl-Trees handle their own onClick events
|
||||||
_handleClick(_ev)
|
_handleClick(_ev)
|
||||||
{
|
{
|
||||||
//if onclick is defined, and we have a resonable target (e.g. one single item that was clicked on, trigger the onclick function
|
// check if not expand icon (> or v) was clicked, we have an onclick handler and a string value
|
||||||
if (typeof this.onclick == "function" && typeof _ev.target.value == "string")
|
if (!(_ev.composedPath()[0].tagName === 'svg' && _ev.composedPath()[0].classList.contains('bi-chevron-right')) &&
|
||||||
|
typeof this.onclick === "function" && typeof _ev.target.value === "string")
|
||||||
{
|
{
|
||||||
this.onclick(_ev.target.value, this, _ev.target.value)
|
this.onclick(_ev.target.value, this, _ev.target.value)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user