Skip to content

Commit

Permalink
Enables deeplinking in Swagger docs
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbs committed Nov 7, 2023
1 parent 88d8320 commit 2ca0ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/docs/view/Swagger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Swagger = ({ url }: { url: string }) => {
const [isLoading, setLoading] = useState(true)
return (
<LoadingWrapper showLoadingIndicator={isLoading}>
<SwaggerUI url={url} onComplete={() => setLoading(false)} />
<SwaggerUI url={url} onComplete={() => setLoading(false)} deepLinking />
</LoadingWrapper>
)
}
Expand Down

0 comments on commit 2ca0ff5

Please sign in to comment.