Merge "Treat object display data as text, not html"

This commit is contained in:
Zuul 2025-05-06 14:12:41 +00:00 committed by Gerrit Code Review
commit 7ff177eef9

View File

@ -318,7 +318,7 @@ horizon.datatables.confirm = function(action) {
var body;
try {
body = $(template.render(params)).html();
body = $(template.render(params)).text();
} catch (e) {
body = name_string + gettext("Please confirm your selection. ") + help_text;
}