Skip to content

Commit

Permalink
fix: use correct endpoint in rename tags operation (#868)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zlendy authored Mar 25, 2024
1 parent 21c95ac commit 5a16690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/view/assets/js/page/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ export default {
};

this.dialog.loading = true;
fetch(new URL("api/tag", document.baseURI), {
fetch(new URL("api/tags", document.baseURI), {
method: "PUT",
body: JSON.stringify(newData),
headers: {
Expand Down

0 comments on commit 5a16690

Please sign in to comment.