Merge pull request #194 from YunoHost/fix-service-active-status

Use the active/inactive status instead of running/exited/dead in service views
This commit is contained in:
Bram 2018-06-14 23:05:01 +02:00 committed by GitHub
commit 38422daf64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 5 deletions

View file

@ -18,7 +18,7 @@
v.name = k;
// Handlebars want booleans
v.is_loaded = (v.loaded=='enabled') ? true : false;
v.is_running = (v.status=='running') ? true : false;
v.is_running = (v.active=='active') ? true : false;
// Translate status and loaded state
v.status = y18n.t(v.status);
v.loaded = y18n.t(v.loaded);
@ -48,9 +48,9 @@
data2.service.name = c.params['service'];
// Handlebars want booleans
data2.service.is_loaded = (data.loaded=='enabled') ? true : false;
data2.service.is_running = (data.status=='running') ? true : false;
data2.service.is_running = (data.active=='active') ? true : false;
// Translate status and loaded state
data2.service.status = y18n.t(data.status);
data2.service.active = y18n.t(data.active);
data2.service.loaded = y18n.t(data.loaded);
store.clear('slide');
c.view('service/service_info', data2);

View file

@ -1,5 +1,6 @@
{
"action": "Action",
"active": "Active",
"add": "Add",
"remove": "Remove",
"administration_password": "Administration password",

View file

@ -39,7 +39,7 @@
<br>
{{t 'service_status'}}
<span class="text-{{#is_running}}success{{/is_running}}{{^is_running}}danger{{/is_running}}">
{{status}}
{{active}}
</span>
<br>
{{t 'started_at'}}

View file

@ -13,7 +13,7 @@
<div class="list-group-item-text">
{{t 'service_status'}}
<span class="text-{{#is_running}}success{{/is_running}}{{^is_running}}danger{{/is_running}}">
{{status}}
{{active}}
</span>
<br>
{{t 'started_at'}}