Skip to content

Commit

Permalink
fix: Delete bookmark was visually glitchy
Browse files Browse the repository at this point in the history
  • Loading branch information
lscambo13 committed Feb 16, 2024
1 parent 41fe3f1 commit 1ad58a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js_modules/custom_bookmarks.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export function editBookmark(event) {
).then((res) => {
if (res.checkboxChecked) {
removeBookmarkFromLocalStorage(targetElement.id);
targetElement.style.display = 'none';
targetElement.parentNode.style.display = 'none';
return;
}
targetElement.href = res.inputValues[1].replaceAll(' ', '');
Expand Down

0 comments on commit 1ad58a9

Please sign in to comment.