mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +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;
|
||||
return {
|
||||
elem: elem,
|
||||
plainText: elem.innerText, // without tags
|
||||
plainText: elem.innerText.replace(/ /g, "\u00a0"), // without tags, with encoded spaces
|
||||
curHtml: elem.innerHTML
|
||||
};
|
||||
}, this);
|
||||
|
|
Loading…
Reference in New Issue
Block a user