Skip to content

Commit 378f63f

Browse files
committed
possibly Strong should be inside Text
1 parent 051a723 commit 378f63f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

flagsmith-jira-app/src/frontend/components/AppSettingsPage.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,9 @@ const AppSettingsForm = ({
157157
<Fragment>
158158
<Box xcss={{ marginBottom: "space.300" }}>
159159
<Inline space="space.050" alignBlock="center">
160-
<Strong>Organisation:</Strong>{" "}
160+
<Text>
161+
<Strong>Organisation:</Strong>
162+
</Text>{" "}
161163
{!!currentOrganisation && <Text>{currentOrganisation.name}</Text>}
162164
{!apiKeyInvalid && !currentOrganisation && (
163165
<Lozenge appearance="moved">Not connected</Lozenge>

flagsmith-jira-app/src/frontend/components/ProjectSettingsPage.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,10 @@ const ProjectSettingsForm = ({ setError, saveProjectId, ...props }: ProjectSetti
113113
<Fragment>
114114
<Box xcss={{ marginBottom: "space.300" }}>
115115
<Inline space="space.050" alignBlock="center">
116-
<Strong>Project:</Strong> {!!currentProject && <Text>{currentProject.name}</Text>}
116+
<Text>
117+
<Strong>Project:</Strong>
118+
</Text>{" "}
119+
{!!currentProject && <Text>{currentProject.name}</Text>}
117120
{!currentProject && projects && projects.length > 0 && !connected && (
118121
<Lozenge appearance="moved">Not connected</Lozenge>
119122
)}

0 commit comments

Comments
 (0)