mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-16 21:16:24 -04:00
Upgraded to FontAwesome 4.3.0
This commit is contained in:
@@ -45,7 +45,7 @@ module.exports = Marionette.Layout.extend({
|
||||
items : [
|
||||
{
|
||||
title : 'Backup',
|
||||
icon : 'icon-file-text',
|
||||
icon : 'icon-sonarr-file-text',
|
||||
command : 'backup',
|
||||
properties : { type : 'manual' },
|
||||
successMessage : 'Database and settings were backed up successfully',
|
||||
|
||||
@@ -6,16 +6,16 @@ module.exports = NzbDroneCell.extend({
|
||||
render : function() {
|
||||
this.$el.empty();
|
||||
|
||||
var icon = 'icon-time';
|
||||
var icon = 'icon-sonarr-backup-scheduled';
|
||||
var title = 'Scheduled';
|
||||
|
||||
var type = this.model.get(this.column.get('name'));
|
||||
|
||||
if (type === 'manual') {
|
||||
icon = 'icon-book';
|
||||
icon = 'icon-sonarr-backup-manual';
|
||||
title = 'Manual';
|
||||
} else if (type === 'update') {
|
||||
icon = 'icon-retweet';
|
||||
icon = 'icon-sonarr-backup-update';
|
||||
title = 'Before update';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user