Skip to content

Commit

Permalink
style(ui): Make text styles consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
daryllimyt committed Mar 18, 2024
1 parent a7f812e commit 7c9def6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/action-node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export default React.memo(function ActionNode({
: "fill-gray-400 text-gray-400"
)}
/>
<span>{status}</span>
<span className="capitalize">{status}</span>
</div>
<div className="flex items-center">
<CircleIcon
Expand All @@ -195,7 +195,7 @@ export default React.memo(function ActionNode({
: "fill-gray-400 text-gray-400"
)}
/>
<span>{isConfiguredMessage}</span>
<span className="capitalize">{isConfiguredMessage}</span>
</div>
<div className="flex items-center">
<BellDotIcon className="mr-1 h-3 w-3" />
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/forms/action.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ export function ActionForm({
>
<FormControl>
<Input
className="text-xs"
key={`${field.id}.${index}`}
{...form.register(
// @ts-ignore
Expand Down

0 comments on commit 7c9def6

Please sign in to comment.