fix: use correct endpoint in rename tags operation (#868)

This commit is contained in:
Zlendy 2024-03-25 23:54:55 +01:00 committed by GitHub
parent 21c95ac70d
commit 5a166906db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: {