Skip to content

feat: Add selected template link at the template select field #1918

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 6 commits into from
May 31, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge branch 'main' of github.com:coder/coder into bq/add-more-info-o…
…n-create-workspace-form
  • Loading branch information
BrunoQuaresma committed May 31, 2022
commit b6dac4fdadc9a2dcd934d22d13a15208ece9987d
4 changes: 2 additions & 2 deletions site/src/components/Margins/Margins.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { makeStyles } from "@material-ui/core/styles"
import React from "react"
import { FC } from "react"
import { containerWidth, sidePadding } from "../../theme/constants"

type Size = "regular" | "medium" | "small"
Expand All @@ -24,7 +24,7 @@ interface MarginsProps {
size?: Size
}

export const Margins: React.FC<MarginsProps> = ({ children, size = "regular" }) => {
export const Margins: FC<MarginsProps> = ({ children, size = "regular" }) => {
const styles = useStyles({ maxWidth: widthBySize[size] })
return <div className={styles.margins}>{children}</div>
}
You are viewing a condensed version of this merge commit. You can view the full changes here.