1
0
mirror of https://github.com/bitwarden/server synced 2025-12-30 07:03:42 +00:00

Fix the issue of returning on Error! without descriptive message (#4056)

Signed-off-by: Cy Okeke <cokeke@bitwarden.com>
This commit is contained in:
cyprain-okeke
2024-05-07 17:45:01 +01:00
committed by GitHub
parent ea49ff7dcb
commit 6bdee5dd34
2 changed files with 14 additions and 5 deletions

View File

@@ -12,7 +12,7 @@
window.location.href = `@Url.Action("Edit", "Providers")?id=${providerId}`;
},
error: function (response) {
alert("Error!");
alert("Error!: " + response.responseText);
}
});
}