summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-08-02 11:35:59 +0000
committerGerrit Code Review <review@openstack.org>2021-08-02 11:35:59 +0000
commitfc1620b3548397f1762b7bc5c44871e10c1d7381 (patch)
tree34129f0f2b746ee40e9ae4d48cb69e199d83b035
parentefa1b3d683d6147abeb3ac9573729a726c481468 (diff)
parent3e5849fbb94785b24ceb14e653645e1db4d38d40 (diff)
downloadhorizon-fc1620b3548397f1762b7bc5c44871e10c1d7381.tar.gz
Merge "Fix tooltips and popovers for flavor details on the instance list." into stable/ussuri
-rw-r--r--openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html b/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html
index bee32c184..ac2bc4167 100644
--- a/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html
+++ b/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_flavor.html
@@ -12,7 +12,7 @@ $(function () {
var $flavor = $("#flavor_details_{{ id }}");
// NOTE(tsufiev): check this in case this template is used in network topology -> delete instance
if ( $flavor.popover ) {
- $flavor.popover({html:true, trigger: "hover"});
+ $flavor.popover({html:true, sanitize: false, trigger: "hover"});
}
});
</script>