Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix currency format issue when page is loaded outside HA wrapper #2017

Merged
merged 2 commits into from
Feb 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/predbat/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def get_header(self, title, refresh=0):
"""
Return the HTML header for a page
"""
text = "<!doctype html><html><head><title>Predbat Web Interface</title>"
text = '<!doctype html><html><head><meta charset="utf-8"><title>Predbat Web Interface</title>'

text += """
<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet">
Expand Down