Skip to content

Commit

Permalink
Fix Bookmark Icon Source Path
Browse files Browse the repository at this point in the history
An incorrect source path for the bookmark icon was preventing the icon
from loading in the saved expressions pane.
  • Loading branch information
brandon1024 committed Dec 22, 2019
1 parent a3cd1c0 commit 139fa22
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions popup/img/icon/copy-to-clipboard-line.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion popup/js/saved-expressions-pane.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ Find.register('Popup.SavedExpressionsPane', function (self) {
.appendChild(ElementBuilder.create(document)
.createElement('img')
.addClass('information-hover-icon')
.setAttribute('src', '/resources/bookmark.svg')
.setAttribute('src', 'img/icon/bookmark.svg')
.setAttribute('data-locale-title', 'saved_expression_icon_title')
.build())
.appendChild(ElementBuilder.create(document)
Expand Down

0 comments on commit 139fa22

Please sign in to comment.