Use textContent property instead of innerHTML in sanitize filter

This commit is contained in:
Marliana Lara
2018-06-14 16:07:46 -04:00
parent 1b5ea07745
commit 9a73d9c616
2 changed files with 2 additions and 2 deletions

View File

@@ -289,7 +289,7 @@ function getProjectDetails () {
const label = strings.get('labels.PROJECT');
const link = `/#/projects/${project.id}`;
const value = $filter('sanitize')(project.name);
const value = project.name;
const tooltip = strings.get('tooltips.PROJECT');
return { label, link, value, tooltip };