Skip to content

Commit

Permalink
Merge pull request #2142 from nextcloud/artonge/fix/sidebar_icon
Browse files Browse the repository at this point in the history
Use information outline as sidebar icon
  • Loading branch information
artonge authored Nov 21, 2023
2 parents a6288c1 + 99bdfc1 commit aa1db1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions js/photos-sidebar.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-sidebar.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
import Vue from 'vue'
// eslint-disable-next-line n/no-missing-import, import/no-unresolved
import InformationSlabSymbol from '@mdi/svg/svg/information-slab-symbol.svg?raw'
import InformationOutline from '@mdi/svg/svg/information-outline.svg?raw'
import { translate as t, translatePlural as n } from '@nextcloud/l10n'
import { getRequestToken } from '@nextcloud/auth'
import { generateFilePath } from '@nextcloud/router'
Expand All @@ -47,7 +47,7 @@ let PhotosTabInstance = null
const photosTab = new OCA.Files.Sidebar.Tab({
id: 'photos',
name: t('photos', 'Details'),
iconSvg: InformationSlabSymbol,
iconSvg: InformationOutline,

async mount(el, fileInfo, context) {
// only load if needed
Expand Down

0 comments on commit aa1db1d

Please sign in to comment.