Skip to content

Commit

Permalink
fix(pane): error for icons
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanSalt committed Aug 6, 2020
1 parent 9916e8d commit 32cfdd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion addons/theme/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ module.exports = function (commas) {
commas.workspace.registerTabPane('theme', {
title: 'Theme#!theme.1',
component: commas.module.require('internal/theme/theme-pane.vue').default,
icon: 'feather-icon icon-feather',
icon: {
name: 'feather-icon icon-feather',
},
})

commas.storage.shareArray('settings').push({
Expand Down
4 changes: 3 additions & 1 deletion addons/user-settings/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ module.exports = function (commas) {
commas.workspace.registerTabPane('user-settings', {
title: 'User Settings#!user-settings.1',
component: commas.module.require('internal/user-settings/user-settings-pane.vue').default,
icon: 'feather-icon icon-sliders',
icon: {
name: 'feather-icon icon-sliders',
},
})

commas.storage.shareArray('settings').push({
Expand Down

0 comments on commit 32cfdd6

Please sign in to comment.