summaryrefslogtreecommitdiff
path: root/horizon/static/framework/widgets/headers/hz-page-header.html
diff options
context:
space:
mode:
authorRadomir Dopieralski <openstack@dopieralski.pl>2023-04-04 17:35:30 +0200
committerRadomir Dopieralski <openstack@dopieralski.pl>2023-04-05 11:00:26 +0200
commit4a89303231bbb00af25064912091516b07ba754e (patch)
treeb5b4f06db6913d812909e72d179a694cb176282f /horizon/static/framework/widgets/headers/hz-page-header.html
parent5663e0865b458fc67005049e68bc4ef73786e495 (diff)
downloadhorizon-4a89303231bbb00af25064912091516b07ba754e.tar.gz
Clean up the syntax of html attributes to always use double quotes
Our templates are very inconsistent and sometimes even use single and double quotes in the same tag. This is an attempt to clean it up a little and use double quotes everywhere. In addition, I have run into a problem with single quotes being incorrectly escaped by the Django compressor, and I want to see if this will help with the issue. Change-Id: I2d5137a87ed65c6abef38a49264346f917a1c85a
Diffstat (limited to 'horizon/static/framework/widgets/headers/hz-page-header.html')
-rw-r--r--horizon/static/framework/widgets/headers/hz-page-header.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/horizon/static/framework/widgets/headers/hz-page-header.html b/horizon/static/framework/widgets/headers/hz-page-header.html
index 4b586cf9a..0172f7128 100644
--- a/horizon/static/framework/widgets/headers/hz-page-header.html
+++ b/horizon/static/framework/widgets/headers/hz-page-header.html
@@ -1,5 +1,5 @@
-<div class='page-header'>
+<div class="page-header">
<h1>{$ ::header $}</h1>
<p>{$ ::description $}</p>
<ng-transclude></ng-transclude>
-</div> \ No newline at end of file
+</div>