Fix tooltips and popovers for flavor details on the instance list.
Due to some changes in bootstrap, the popup table for flavor details content is empty, on the instance list pages. This patch adds 'sanitize:false' which fix the issue. For more info. please refer[1]. [1] https://github.com/twbs/bootstrap/issues/28290 Closes-Bug: #1886025 Change-Id: I60788061d17a5529440ec1e3d6d5c11f5259d2e8
This commit is contained in:
parent
28a93edfdf
commit
25816bd824
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user