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 1a587df commit 53fb65dCopy full SHA for 53fb65d
client/packages/lowcoder/src/pages/setting/organization/orgList.tsx
@@ -211,6 +211,7 @@ function OrganizationSetting() {
211
logoUrl: org.logoUrl || "",
212
createdAt: org.createdAt,
213
updatedAt: org.updatedAt,
214
+ isCurrentOrg: org.isCurrentOrg,
215
}));
216
217
@@ -307,7 +308,7 @@ function OrganizationSetting() {
307
308
key: i,
309
operation: (
310
<OperationWrapper>
- {item.id !== user.currentOrgId && (
311
+ {!item.isCurrentOrg && (
312
<SwitchBtn
313
className={"home-datasource-edit-button"}
314
buttonType={"blue"}
0 commit comments