Skip to content

docs: add jetbrains toolbox steps #17661

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 23 commits into from
May 22, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b4a0e12
add toolbox steps
EdwardAngert May 2, 2025
00b0249
Merge branch 'main' into 16883-jetbrains-toolbox
EdwardAngert May 8, 2025
40d68ec
fix: persist terraform modules during template import (#17665)
aslilac May 8, 2025
94c9d4c
fix: revert fix: persist terraform modules during template import (#1…
sreya May 9, 2025
c90608d
chore: add prebuild docs (#17580)
dannykopping May 9, 2025
817ec87
fix: fixed flaking VPN tunnel tests & bump coder/quartz to 0.1.3 (#17…
ibetitsmike May 9, 2025
77abfea
chore: extract app access logic for reuse (#17724)
BrunoQuaresma May 9, 2025
705ae40
chore: add keys for each app on workspaces table (#17726)
BrunoQuaresma May 9, 2025
2de22f9
refactor: improve apps.ts readbility (#17741)
BrunoQuaresma May 9, 2025
28a00de
chore: fix :first-child warning (#17727)
BrunoQuaresma May 9, 2025
2a9608c
chore: replace MUI icons - 1 (#17731)
BrunoQuaresma May 9, 2025
2df2161
chore: upgrade `terraform-provider-coder` & `preview` libs (#17738)
dannykopping May 9, 2025
eef1655
docs: clarify parameter autofill documentation (#17728)
EdwardAngert May 9, 2025
e05cafe
refactor: add safe list for external app protocols (#17742)
BrunoQuaresma May 9, 2025
2058980
chore: replace MUI icons - 2 (#17732)
BrunoQuaresma May 9, 2025
576eb8a
chore: replace MUI icons - 3 (#17733)
BrunoQuaresma May 9, 2025
34846f4
move toolbox to separate doc
EdwardAngert May 9, 2025
e178e47
fix parameters; require token
EdwardAngert May 9, 2025
006780c
Merge branch 'main' into 16883-jetbrains-toolbox
EdwardAngert May 12, 2025
f6473dd
fix link
EdwardAngert May 12, 2025
e401225
Merge branch 'main' into 16883-jetbrains-toolbox
matifali May 20, 2025
0bd8bfe
prereqs and internal certs
EdwardAngert May 21, 2025
1c41df3
Merge branch 'main' into 16883-jetbrains-toolbox
EdwardAngert May 21, 2025
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
chore: fix :first-child warning (#17727)
Fix the following warning:

```
The pseudo class ":first-child" is potentially unsafe when doing server-side rendering.
```
  • Loading branch information
BrunoQuaresma authored and EdwardAngert committed May 9, 2025
commit 28a00de9bd15e35a6e5bce6b82ec6c337db55d6f
9 changes: 2 additions & 7 deletions site/src/components/InputGroup/InputGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,9 @@ export const InputGroup: FC<HTMLProps<HTMLDivElement>> = (props) => {
zIndex: 2,
},

"& > *:first-child": {
"& > *:first-of-type": {
borderTopRightRadius: 0,
borderBottomRightRadius: 0,

"&.MuiFormControl-root .MuiInputBase-root": {
borderTopRightRadius: 0,
borderBottomRightRadius: 0,
},
},

"& > *:last-child": {
Expand All @@ -45,7 +40,7 @@ export const InputGroup: FC<HTMLProps<HTMLDivElement>> = (props) => {
},
},

"& > *:not(:first-child):not(:last-child)": {
"& > *:not(:first-of-type):not(:last-child)": {
borderRadius: 0,

"&.MuiFormControl-root .MuiInputBase-root": {
Expand Down
10 changes: 5 additions & 5 deletions site/src/components/Markdown/Markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,19 +348,19 @@ const MarkdownGfmAlert: FC<MarkdownGfmAlertProps> = ({
"[&_p]:m-0 [&_p]:mb-2",

alertType === "important" &&
"border-highlight-purple [&_p:first-child]:text-highlight-purple",
"border-highlight-purple [&_p:first-of-type]:text-highlight-purple",

alertType === "warning" &&
"border-border-warning [&_p:first-child]:text-border-warning",
"border-border-warning [&_p:first-of-type]:text-border-warning",

alertType === "note" &&
"border-highlight-sky [&_p:first-child]:text-highlight-sky",
"border-highlight-sky [&_p:first-of-type]:text-highlight-sky",

alertType === "tip" &&
"border-highlight-green [&_p:first-child]:text-highlight-green",
"border-highlight-green [&_p:first-of-type]:text-highlight-green",

alertType === "caution" &&
"border-highlight-red [&_p:first-child]:text-highlight-red",
"border-highlight-red [&_p:first-of-type]:text-highlight-red",
)}
>
<p className="font-bold">
Expand Down
6 changes: 3 additions & 3 deletions site/src/components/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ export const TableBody = React.forwardRef<
<tbody
ref={ref}
className={cn(
"[&>tr:first-child>td]:border-t [&>tr>td:first-child]:border-l",
"[&>tr:first-of-type>td]:border-t [&>tr>td:first-of-type]:border-l",
"[&>tr:last-child>td]:border-b [&>tr>td:last-child]:border-r",
"[&>tr:first-child>td:first-child]:rounded-tl-md [&>tr:first-child>td:last-child]:rounded-tr-md",
"[&>tr:last-child>td:first-child]:rounded-bl-md [&>tr:last-child>td:last-child]:rounded-br-md",
"[&>tr:first-of-type>td:first-of-type]:rounded-tl-md [&>tr:first-of-type>td:last-child]:rounded-tr-md",
"[&>tr:last-child>td:first-of-type]:rounded-bl-md [&>tr:last-child>td:last-child]:rounded-br-md",
className,
)}
{...props}
Expand Down
2 changes: 1 addition & 1 deletion site/src/modules/resources/ResourceCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const styles = {
borderBottom: 0,
},

"&:first-child": {
"&:first-of-type": {
borderTopLeftRadius: 8,
borderTopRightRadius: 8,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ const styles = {
},
},

"& li:first-child": {
"& li:first-of-type": {
color: theme.palette.text.secondary,
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const XAxisLabel: FC<HTMLProps<HTMLLIElement>> = (props) => {
// Note: This adjustment is not applied to the first element,
// as the 0 label/value is not displayed in the chart.
width: "calc(var(--x-axis-width) * 2)",
"&:not(:first-child)": {
"&:not(:first-of-type)": {
marginLeft: "calc(-1 * var(--x-axis-width))",
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const styles = {
flexShrink: 0,
},
section: (theme) => ({
"&:not(:first-child)": {
"&:not(:first-of-type)": {
borderTop: `1px solid ${theme.palette.divider}`,
},
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ const TemplateParametersUsagePanel: FC<TemplateParametersUsagePanelProps> = ({
marginRight: -24,
borderTop: `1px solid ${theme.palette.divider}`,
width: "calc(100% + 48px)",
"&:first-child": {
"&:first-of-type": {
borderTop: 0,
},
gap: 24,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const styles = {
lineHeight: "1.5",
borderTop: `1px solid ${theme.palette.divider}`,

"&:first-child": {
"&:first-of-type": {
borderTop: 0,
},
}),
Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy