Style RefreshToken URL as <code> in the OAuthFlow, in a similar fashion like Token URL is styled, for consistency in rendering.

This commit is contained in:
szaszeke 2023-08-30 12:26:14 +03:00
parent c86fd7f597
commit 2d125bef1e

View File

@ -39,7 +39,7 @@ export function OAuthFlowComponent(props: OAuthFlowProps) {
{flow!.refreshUrl && ( {flow!.refreshUrl && (
<SecurityRow> <SecurityRow>
<strong> Refresh URL: </strong> <strong> Refresh URL: </strong>
{flow!.refreshUrl} <code>{flow!.refreshUrl}</code>
</SecurityRow> </SecurityRow>
)} )}
{!!scopesNames.length && ( {!!scopesNames.length && (