Skip to content

Commit

Permalink
Merge pull request #1016 from cultuurnet/PPF-397-styling-improvements
Browse files Browse the repository at this point in the history
PPF-397-Improve styling
  • Loading branch information
vhande authored Apr 16, 2024
2 parents abdac2d + eed9f69 commit 88d866c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/ts/Components/ActivationRequest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const ActivationRequest = ({ id, type }: Props) => {
"integrations.status.pending_approval_integration_description"
)}
href={t("integrations.status.before_going_live_link")}
className="text-publiq-blue-dark hover:underline"
className="text-publiq-blue-dark hover:underline mb-3"
/>,
]}
/>
Expand Down
2 changes: 1 addition & 1 deletion resources/ts/Components/Integrations/Detail/UrlList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ export const UrlList = ({
Object.entries(environmentToUrls) as [Environment, IntegrationUrl[]][]
).map(([environment, urls]) => (
<Fragment key={environment}>
<label>{t(`details.integration_settings.${environment}`)}</label>
{urls.map((url, index) => (
<FormElement
key={url.id}
elementId={url.id}
error={errors[`${url.type}.${url.environment}.${index}`]}
label={t(`details.integration_settings.${environment}`)}
component={
<div className="flex gap-2">
<Input
Expand Down

0 comments on commit 88d866c

Please sign in to comment.