Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix orglist active org icon
  • Loading branch information
iamfaran committed Jul 11, 2025
commit 53fb65d20e3ca1a1cfab04ed0305b714f445e1fc
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ function OrganizationSetting() {
logoUrl: org.logoUrl || "",
createdAt: org.createdAt,
updatedAt: org.updatedAt,
isCurrentOrg: org.isCurrentOrg,
}));


Expand Down Expand Up @@ -307,7 +308,7 @@ function OrganizationSetting() {
key: i,
operation: (
<OperationWrapper>
{item.id !== user.currentOrgId && (
{!item.isCurrentOrg && (
<SwitchBtn
className={"home-datasource-edit-button"}
buttonType={"blue"}
Expand Down
Loading