Skip to content

Commit

Permalink
Change delete title to remove. Fixes #700
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanKingston committed Sep 26, 2017
1 parent b0cc6e7 commit 16ed899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webextension/js/popup.js
Expand Up @@ -802,7 +802,7 @@ Logic.registerPanel(P_CONTAINERS_EDIT, {
</td>`;
tr.querySelector(".container-name").textContent = identity.name;
tr.querySelector(".edit-container").setAttribute("title", `Edit ${identity.name} container`);
tr.querySelector(".remove-container").setAttribute("title", `Delete ${identity.name} container`);
tr.querySelector(".remove-container").setAttribute("title", `Remove ${identity.name} container`);


Logic.addEnterHandler(tr, e => {
Expand Down

0 comments on commit 16ed899

Please sign in to comment.