Fix bug in Command Palette (#6799)

This commit is contained in:
francisco-milan 2024-02-07 00:50:06 -07:00 committed by GitHub
parent 0514b2df62
commit b4e34da365
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2416,7 +2416,7 @@ function enumerateUiActions() {
if (anchor.href.includes("label")) {
result = "Label: " + result;
}
return result;
return result.trim();
})()
});
});