Skip to content

Commit

Permalink
fix: missed redirect path prefix in connection detail (#6928)
Browse files Browse the repository at this point in the history
  • Loading branch information
mintsweet authored and action_bot committed Feb 6, 2024
1 parent b85155d commit d39a306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-ui/src/routes/blueprint/connection-detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ export const BlueprintConnectionDetailPage = () => {
Manage Data Scope
</Button>
{pluginConfig.scopeConfig && (
<ExternalLink style={{ marginLeft: 8 }} link={`/connections/${connection.plugin}/${connection.id}`}>
<ExternalLink style={{ marginLeft: 8 }} link={PATHS.CONNECTION(connection.plugin, connection.id)}>
<Button type="primary" icon={<FormOutlined />}>
Edit Scope Config
</Button>
Expand Down

0 comments on commit d39a306

Please sign in to comment.