Move a comment to satisfy VS Code emmet extension
My cute keybind to quickly wrap stuff in <Box> wasn't working in this file, and I figured out from deleting stuff and narrowing down that it was this comment. I guess Emmet's JSX parser doesn't like a comment being there! I moved it up a bit instead.
This commit is contained in:
parent
7c3298d5b2
commit
e6a94eaf80
1 changed files with 3 additions and 3 deletions
|
@ -819,10 +819,10 @@ function ItemPageOutfitPreview({ itemId }) {
|
||||||
"speciesColorPicker zones"
|
"speciesColorPicker zones"
|
||||||
`,
|
`,
|
||||||
}}
|
}}
|
||||||
|
// HACK: Really I wanted 400px to match the natural height of the
|
||||||
|
// preview in md, but in Chromium that creates a scrollbar and
|
||||||
|
// 401px doesn't, not sure exactly why?
|
||||||
templateRows={{
|
templateRows={{
|
||||||
// HACK: Really I wanted 400px to match the natural height of the
|
|
||||||
// preview in md, but in Chromium that creates a scrollbar and
|
|
||||||
// 401px doesn't, not sure exactly why?
|
|
||||||
base: "auto auto 200px auto",
|
base: "auto auto 200px auto",
|
||||||
md: "401px auto",
|
md: "401px auto",
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in a new issue