DataStoreContent.js - render_backup_type: use better default
This commit is contained in:
parent
0771c57b87
commit
58e1051bc9
|
@ -67,7 +67,7 @@ Ext.define('PBS.DataStoreContent', {
|
||||||
} else if (btype === 'host') {
|
} else if (btype === 'host') {
|
||||||
cls = 'fa-building';
|
cls = 'fa-building';
|
||||||
} else {
|
} else {
|
||||||
return value;
|
return btype + '/' + value;
|
||||||
}
|
}
|
||||||
var fa = '<i class="fa fa-fw x-grid-icon-custom ' + cls + '"></i> ';
|
var fa = '<i class="fa fa-fw x-grid-icon-custom ' + cls + '"></i> ';
|
||||||
return fa + value;
|
return fa + value;
|
||||||
|
|
Loading…
Reference in New Issue