mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
Handle spaces in stage filter (#3153)
* Handle spaces in stage filter #3073 * Fix JS lint issue Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
parent
753d66cad3
commit
c4f4c713b6
|
@ -452,7 +452,7 @@ StageHelper.prototype.applyFilterToRow = function (row, filter) {
|
||||||
if (elem.firstChild && elem.firstChild.tagName === "A") elem = elem.firstChild;
|
if (elem.firstChild && elem.firstChild.tagName === "A") elem = elem.firstChild;
|
||||||
return {
|
return {
|
||||||
elem: elem,
|
elem: elem,
|
||||||
plainText: elem.innerText, // without tags
|
plainText: elem.innerText.replace(/ /g, "\u00a0"), // without tags, with encoded spaces
|
||||||
curHtml: elem.innerHTML
|
curHtml: elem.innerHTML
|
||||||
};
|
};
|
||||||
}, this);
|
}, this);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user