Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: use correct pin url
Browse files Browse the repository at this point in the history
  • Loading branch information
Raspincel committed Jan 11, 2024
1 parent 9936ae0 commit fc83b19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/comments/html-pin-adapter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export class HTMLPin implements PinAdapter {
private setAddCursor(): void {
Object.keys(this.elementsWithDataId).forEach((id) => {
this.divWrappers.get(id).style.cursor =
'url("https://production.cdn.superviz.com/static/pin-add.png") 0 100, pointer';
'url("https://production.cdn.superviz.com/static/pin-html.png") 0 100, pointer';
this.divWrappers.get(id).style.pointerEvents = 'auto';
});
}
Expand Down Expand Up @@ -526,7 +526,7 @@ export class HTMLPin implements PinAdapter {
if (!this.isActive || !this.isPinsVisible) return;

this.divWrappers.get(id).style.cursor =
'url("https://production.cdn.superviz.com/static/pin-add.png") 0 100, pointer';
'url("https://production.cdn.superviz.com/static/pin-html.png") 0 100, pointer';
this.divWrappers.get(id).style.pointerEvents = 'auto';
this.addElementListeners(id);
}
Expand Down

0 comments on commit fc83b19

Please sign in to comment.