mirror of
https://github.com/9001/copyparty.git
synced 2026-06-20 13:12:26 -06:00
fix hide column picking when not clicking on the name
This commit is contained in:
parent
cc21cc8966
commit
9f3a23eb25
|
|
@ -8949,7 +8949,10 @@ var filecols = (function () {
|
||||||
if (toast.tag == 'pickhide')
|
if (toast.tag == 'pickhide')
|
||||||
toast.hide();
|
toast.hide();
|
||||||
|
|
||||||
r.hide(e.target.textContent);
|
if(e.target.lastChild)
|
||||||
|
r.hide(e.target.lastChild.textContent)
|
||||||
|
else
|
||||||
|
r.hide(e.target.textContent);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
r.picking = true;
|
r.picking = true;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue