DataStoreContent.js - render_backup_type: use better default

This commit is contained in:
Dietmar Maurer 2019-12-22 11:09:30 +01:00
parent 0771c57b87
commit 58e1051bc9
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ Ext.define('PBS.DataStoreContent', {
} else if (btype === 'host') {
cls = 'fa-building';
} else {
return value;
return btype + '/' + value;
}
var fa = '<i class="fa fa-fw x-grid-icon-custom ' + cls + '"></i> ';
return fa + value;