Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/src/modules/provisioners/ProvisionerTags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type ProvisionerTagProps = {

export const ProvisionerTag: FC<ProvisionerTagProps> = ({ label, value }) => {
return (
<Badge size="sm" className="whitespace-nowrap">
<Badge className="whitespace-nowrap">
[{label}
{value && `=${value}`}]
</Badge>
Expand All @@ -46,7 +46,7 @@ export const ProvisionerTruncateTags: FC<ProvisionerTagsProps> = ({ tags }) => {
return (
<ProvisionerTags>
<ProvisionerTag label={firstKey} value={firstValue} />
{remainderCount > 0 && <Badge size="sm">+{remainderCount}</Badge>}
{remainderCount > 0 && <Badge>+{remainderCount}</Badge>}
</ProvisionerTags>
);
};
3 changes: 1 addition & 2 deletions site/src/pages/AIBridgePage/NetworkCallBadges.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,10 @@ export const NetworkCallBadges: FC<NetworkCallBadgesProps> = ({ summary }) => {
aria-label="More info"
className="flex items-center whitespace-nowrap border-0 bg-transparent p-0 text-inherit"
>
<Badge size="sm" className="rounded-e-none">
<Badge className="rounded-e-none">
{summary.total.toLocaleString("en-US")}
</Badge>
<Badge
size="sm"
svgSize="xs"
className="gap-0 bg-surface-tertiary rounded-s-none text-content-warning"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const JobRow: FC<JobRowProps> = ({ job, defaultIsOpen = false }) => {
</Button>
</TableCell>
<TableCell>
<Badge size="sm">{job.type}</Badge>
<Badge>{job.type}</Badge>
</TableCell>
<TableCell>
{job.metadata.template_name !== "" ? (
Expand Down
Loading