Skip to content

Commit

Permalink
[Fix-368][UI] Fix sla job delete api url (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
xxzuo authored Feb 27, 2024
1 parent 65c35c6 commit e7f614b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datavines-ui/src/view/Main/Warning/SLAsMetric/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const Index = () => {
const onDelete = async (record: TWarnMetricTableItem) => {
try {
setLoading(true);
await $http.delete(`/job/${record.id}`);
await $http.delete(`/sla/job/${record.id}`);
message.success('Delete Success');
getData();
} catch (error) {
Expand Down

0 comments on commit e7f614b

Please sign in to comment.