Skip to content

refactor: start using emotion for styling #9909

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Sep 29, 2023
Prev Previous commit
Next Next commit
🤬
  • Loading branch information
aslilac committed Sep 29, 2023
commit cebd48a46088ab62c830b12f5a490de3bb516e18
2 changes: 1 addition & 1 deletion site/src/components/DeploySettingsLayout/Option.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const OptionValue: FC<OptionValueProps> = (props) => {
return <span css={optionStyles}>{children}</span>;
}

if (!children || children.length < 1) {
if (!children || children.length === 0) {
return <span css={optionStyles}>Not set</span>;
}

Expand Down