You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(slack): reconnect surfaces Atlassian error codes and persists name/description edits
- PUT credential route now returns the Atlassian provider code (providerErrorCode
-> code) so reconnect failures map to specific token/domain messages, matching create
- Google/Atlassian reconnect send + seed displayName/description (parity with Slack);
edits are no longer silently discarded, and empty fields don't clobber existing values
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/integrations/components/connect-service-account-modal/connect-service-account-modal.tsx
+29-11Lines changed: 29 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,8 @@ export function ConnectServiceAccountModal({
142
142
serviceName={serviceName}
143
143
serviceIcon={serviceIcon}
144
144
credentialId={credentialId}
145
+
initialDisplayName={credentialDisplayName}
146
+
initialDescription={credentialDescription}
145
147
/>
146
148
)
147
149
}
@@ -153,6 +155,8 @@ export function ConnectServiceAccountModal({
0 commit comments