Skip to content

Commit

Permalink
fix #128770.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Jul 29, 2021
1 parent 24ae09b commit a491a1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class ReactionActionViewItem extends ActionViewItem {
let reactionIcon = dom.append(this.label, dom.$('.reaction-icon'));
reactionIcon.style.display = '';
let uri = URI.revive(action.icon);
reactionIcon.style.backgroundImage = `url('${uri}')`;
reactionIcon.style.backgroundImage = dom.asCSSUrl(uri);
reactionIcon.title = action.label;
}
if (action.count) {
Expand Down

0 comments on commit a491a1e

Please sign in to comment.