We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23fcbf9 commit cd92f7cCopy full SHA for cd92f7c
client/packages/lowcoder/src/pages/setting/organization/orgList.tsx
@@ -274,7 +274,10 @@ function OrganizationSetting() {
274
<SwitchBtn
275
className={"home-datasource-edit-button"}
276
buttonType={"blue"}
277
- onClick={() => dispatch(switchOrg(item.id))}
+ onClick={(e) => {
278
+ e.stopPropagation();
279
+ dispatch(switchOrg(item.id));
280
+ }}
281
>
282
{trans("profile.switchOrg")}
283
</SwitchBtn>
0 commit comments