mirror of
https://github.com/9001/copyparty.git
synced 2026-06-18 20:22:27 -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')
|
||||
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue