fix: [decaying:tool] Enabled icon is correctly displayed in the model

table
pull/5032/head
mokaddem 2019-08-29 12:26:13 +02:00
parent 9baafffc7a
commit 29d1b940d4
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -1041,7 +1041,7 @@ ModelTable.prototype = {
{'basescoreconfig': btoa(JSON.stringify(model.DecayingModel.parameters.settings))}
),
this._gen_td(model.DecayingModel.attribute_types.length, 'DMNumType'),
this._gen_td(this._h(model.DecayingModel.enabled) ? '<i class="fa fa-check"></i>' : '<i class="fa fa-times"></i>', 'DMEnabled'),
this._gen_td(model.DecayingModel.enabled ? '<i class="fa fa-check"></i>' : '<i class="fa fa-times"></i>', 'DMEnabled'),
this._gen_td_buttons(model)
];
},