Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
charliepark committed Oct 24, 2024
1 parent e0346d8 commit 9ab6871
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions app/forms/floating-ip-create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,9 @@ const toComboboxItem = (p: SiloIpPool): ComboboxItem => {
<div>
{p.name}
{p.isDefault && (
<>
{' '}
<Badge className="ml-1" color="neutral">
default
</Badge>
</>
<Badge className="ml-1" color="neutral">
default
</Badge>
)}
</div>
{p.description.length && (
Expand Down
2 changes: 1 addition & 1 deletion app/forms/ip-pool-create.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function CreateIpPoolSideModalForm() {
<DescriptionField name="description" control={form.control} />
<Message
variant="info"
content="IP pool names and descriptions are visible to end users in linked silos."
content="Users in linked silos will use IP pool names and descriptions to help them choose a pool when allocating IPs."
/>
</SideModalForm>
)
Expand Down

0 comments on commit 9ab6871

Please sign in to comment.