Skip to content

Commit 29393fc

Browse files
committed
Port sidebar icon to material
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
1 parent f328c70 commit 29393fc

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

js/activity-sidebar.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/activity-sidebar.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/sidebar.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ import { translate as t, translatePlural as n } from '@nextcloud/l10n'
2424

2525
import ActivityTab from './views/ActivityTab.vue'
2626

27+
import LightningBolt from 'vue-material-design-icons/LightningBolt.vue'
28+
2729
Vue.prototype.t = t
2830
Vue.prototype.n = n
2931

@@ -35,7 +37,7 @@ let ActivityTabInstance = null
3537
const activityTab = new OCA.Files.Sidebar.Tab({
3638
id: 'activity',
3739
name: t('activity', 'Activity'),
38-
icon: 'icon-activity',
40+
icon: LightningBolt,
3941

4042
async mount(el, fileInfo, context) {
4143
if (ActivityTabInstance) {

0 commit comments

Comments
 (0)