1996fanrui commented on code in PR #1792:
URL:
https://github.com/apache/incubator-streampark/pull/1792#discussion_r991821344
##########
streampark-console/streampark-console-service/src/main/resources/mapper/system/TeamMapper.xml:
##########
@@ -47,8 +47,8 @@
<select id="findUserTeams" resultType="team" parameterType="team">
select t.* from t_team t
- join t_user_role ur
- on t.id = ur.team_id
+ join t_member m
+ on t.id = m.team_id
where ur.user_id = #{userId}
Review Comment:
Checked, it's done.
##########
streampark-console/streampark-console-webapp/src/views/system/member/MemberAdd.vue:
##########
@@ -119,10 +117,7 @@ export default {
this.form.validateFields((err, member) => {
if (!err && this.validateStatus === 'success') {
this.loading = true
- post({
- ...member,
Review Comment:
Checked, it's done.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]