diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b4ffba8..ba6ef7dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Task toggle (!398+) - Basic API for modifying tasks (!398+) ### Bug fixes +- Fix an issue where the motd were not displayed properly one small screens ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/402)) - Remove redundant path check on backup restore ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/390)) - Fix issue with stats pinging on slow starting servers ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/391)) - Fix unhandled exeption when serverjars api returns 'None' ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/392)) diff --git a/app/frontend/templates/public/status.html b/app/frontend/templates/public/status.html index 0a444158..3aea6696 100644 --- a/app/frontend/templates/public/status.html +++ b/app/frontend/templates/public/status.html @@ -125,7 +125,7 @@
{% if server['stats']['desc'] != 'False' %}
- {{ + {{ server['stats']['desc'] }}
{% end %} @@ -143,6 +143,7 @@
Crafty can't get infos from this Server
+
{% end %} @@ -200,7 +201,7 @@ } motd = motd + `` + server.desc + `
`; - m_motd = m_motd + `
` + server.desc + `
`; + m_motd = m_motd + `
` + server.desc + `
`; server_motd.innerHTML = motd; m_server_motd.innerHTML = m_motd; }