Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eca545 commit 89b4629Copy full SHA for 89b4629
site/src/modules/provisioners/ProvisionerTag.tsx
@@ -57,7 +57,11 @@ export const ProvisionerTag: FC<ProvisionerTagProps> = ({
57
if (valid) {
58
return <BooleanPill value={boolValue}>{content}</BooleanPill>;
59
}
60
- return <Pill size="lg" icon={<Sell />}>{content}</Pill>;
+ return (
61
+ <Pill size="lg" icon={<Sell />}>
62
+ {content}
63
+ </Pill>
64
+ );
65
};
66
67
type BooleanPillProps = Omit<ComponentProps<typeof Pill>, "icon" | "value"> & {
0 commit comments