Skip to content

Commit

Permalink
fix: 修复Playground分组无用户分组 (close #529)
Browse files Browse the repository at this point in the history
  • Loading branch information
Calcium-Ion committed Oct 14, 2024
1 parent f599c65 commit ade6d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/Playground.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const Playground = () => {
};

const loadGroups = async () => {
let res = await API.get(`/api/user/groups`);
let res = await API.get(`/api/user/self/groups`);
const { success, message, data } = res.data;
if (success) {
// return data is a map, key is group name, value is group description
Expand Down

0 comments on commit ade6d0f

Please sign in to comment.