mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-05 16:01:50 -05:00
Use textContent property instead of innerHTML in sanitize filter
This commit is contained in:
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user