This is an automated email from the ASF dual-hosted git repository. xiaoyu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/shenyu-dashboard.git
The following commit(s) were added to refs/heads/master by this push: new 21e10e17 [type:fix] remove an additional delimiter on find meta-data url path (#500) 21e10e17 is described below commit 21e10e17490cbb83973c124ee80fbd6d71a01230 Author: eye-gu <734164...@qq.com> AuthorDate: Thu Nov 14 15:21:04 2024 +0800 [type:fix] remove an additional delimiter on find meta-data url path (#500) Co-authored-by: guzemin <zemin...@sorcara.com> --- src/services/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/api.js b/src/services/api.js index 10af4a51..27dcda4a 100644 --- a/src/services/api.js +++ b/src/services/api.js @@ -87,7 +87,7 @@ export async function getAllMetadata(params) { } export async function findMetadata(params) { - return request(`${baseUrl}/meta-data/${params.id}/`, { + return request(`${baseUrl}/meta-data/${params.id}`, { method: `GET`, }); }