From e11fbbd7281e7319b0a28c5dc06916fba29ce402 Mon Sep 17 00:00:00 2001 From: OldHawk Date: Wed, 13 Jun 2018 17:48:29 +0800 Subject: [PATCH] fix(torrents): fixed torrent detail page tab icon issue --- .../client/controllers/torrent-info.client.controller.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/torrents/client/controllers/torrent-info.client.controller.js b/modules/torrents/client/controllers/torrent-info.client.controller.js index 10d4d205..a5d0fd68 100644 --- a/modules/torrents/client/controllers/torrent-info.client.controller.js +++ b/modules/torrents/client/controllers/torrent-info.client.controller.js @@ -618,14 +618,14 @@ vm.torrentTabs.push( { - icon: 'fa-file-video-o', + icon: 'fa-file-video', title: $translate.instant('TAB_TORRENT_INFO'), templateUrl: 'torrentInfo.html', ng_show: true, badges: [] }, { - icon: 'fa-file-text', + icon: 'fa-file-alt', title: $translate.instant('TAB_USER_SCREENSHOTS'), templateUrl: 'screenshots.html', ng_show: vm.showScreenshotsTab(), @@ -637,7 +637,7 @@ ] }, { - icon: 'fa-file-text', + icon: 'fa-image', title: $translate.instant('TAB_USER_SUBTITLE'), templateUrl: 'subtitleInfo.html', ng_show: vm.showSubtitleTab(),