Skip to content

Commit

Permalink
Fix missing image
Browse files Browse the repository at this point in the history
I forgot to change the link when I moved the icon into the images folder.
  • Loading branch information
alanhkarp committed May 15, 2024
1 parent 69f9def commit 3873d6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ssp.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ window.onload = async function () {
get("logopw").style.display = "block";
// Don't worry about waiting for these to complete
await chrome.action.setTitle({title: "A site password may be on the clipboard."});
await chrome.action.setIcon({"path": "icon128pw.png"});
await chrome.action.setIcon({"path": "images/icon128pw.png"});
} else {
if (logging) console.log("popup clipboard not used");
get("logo").title = defaultTitle;
Expand Down Expand Up @@ -511,7 +511,7 @@ get("sitepwmenucopy").onclick = async function(e) {
get("logo").style.display = "none";
get("logopw").style.display = "block";
await chrome.action.setTitle({title: "A site password may be on the clipboard."});
await chrome.action.setIcon({"path": "icon128pw.png"});
await chrome.action.setIcon({"path": "images/icon128pw.png"});
await chrome.storage.local.set({"onClipboard": true})
copied("sitepw");
} catch(e) {
Expand Down

0 comments on commit 3873d6e

Please sign in to comment.