Merge pull request #1517 from Jo-IE/edit-tooltip-html
remove HTML entities from tooltip
This commit is contained in:
commit
d04252a5ad
1 changed files with 35 additions and 35 deletions
|
@ -637,9 +637,9 @@ Logic.registerPanel(P_CONTAINERS_LIST, {
|
|||
|
||||
context.classList.add("userContext-wrapper", "open-newtab", "clickable");
|
||||
manage.classList.add("show-tabs", "pop-button");
|
||||
manage.title = escaped`View ${identity.name} container`;
|
||||
manage.setAttribute("title", `View ${identity.name} container`);
|
||||
context.setAttribute("tabindex", "0");
|
||||
context.title = escaped`Create ${identity.name} tab`;
|
||||
context.setAttribute("title", `Create ${identity.name} tab`);
|
||||
context.innerHTML = escaped`
|
||||
<div class="userContext-icon-wrapper open-newtab">
|
||||
<div class="usercontext-icon"
|
||||
|
|
Loading…
Add table
Reference in a new issue