mirror of
https://github.com/discourse/discourse.git
synced 2025-01-20 17:12:05 +08:00
Fix admin dashboard version check losing its css styling
This commit is contained in:
parent
e5e0900850
commit
1dd882ea99
|
@ -20,7 +20,7 @@ window.Discourse.AdminDashboardController = Ember.Controller.extend
|
|||
|
||||
priorityClass: (->
|
||||
if @get('versionCheck.critical_updates')
|
||||
'critical'
|
||||
'version-check critical'
|
||||
else
|
||||
'normal'
|
||||
'version-check normal'
|
||||
).property('versionCheck')
|
|
@ -1,10 +1,9 @@
|
|||
<h3>{{i18n admin.dashboard.welcome}}</h3>
|
||||
|
||||
<p class="version-check">
|
||||
<p {{bindAttr class="priorityClass"}}>
|
||||
{{#if loading }}
|
||||
{{i18n loading}}
|
||||
{{else}}
|
||||
<p {{bindAttr class="priorityClass"}}>
|
||||
{{i18n admin.dashboard.version}}: <span class="version-number">{{ versionCheck.installed_version }}</span>
|
||||
|
||||
<span class="version-notes">
|
||||
|
@ -18,6 +17,5 @@
|
|||
{{i18n admin.dashboard.latest_version}}: <span class="version-number">{{ versionCheck.latest_version }}</span>
|
||||
{{/if}}
|
||||
</span>
|
||||
</p>
|
||||
{{/if}}
|
||||
</p>
|
Loading…
Reference in New Issue
Block a user