fix
This commit is contained in:
parent
1781998782
commit
af78d0459b
File diff suppressed because one or more lines are too long
|
|
@ -30,7 +30,7 @@ export const EdSideStyle: FC<{ meta: IMeta }> = ({ meta }) => {
|
||||||
className={cx(
|
className={cx(
|
||||||
"font-mono",
|
"font-mono",
|
||||||
css`
|
css`
|
||||||
font-size: 11px;
|
font-size: 9px;
|
||||||
width: 500px;
|
width: 500px;
|
||||||
height: 500px;
|
height: 500px;
|
||||||
margin: 5px 0px;
|
margin: 5px 0px;
|
||||||
|
|
@ -43,7 +43,10 @@ export const EdSideStyle: FC<{ meta: IMeta }> = ({ meta }) => {
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="border px-1 py-[2px] cursor-pointer bg-white hover:bg-blue-100"
|
className="border px-1 py-[2px] cursor-pointer bg-white hover:bg-blue-100"
|
||||||
onClick={() => {}}
|
onClick={() => {
|
||||||
|
local.value = JSON.stringify(meta.item, null, 2);
|
||||||
|
p.render();
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
|
@ -68,7 +71,6 @@ export const EdSideStyle: FC<{ meta: IMeta }> = ({ meta }) => {
|
||||||
className="border px-1 cursor-pointer bg-white hover:bg-blue-100"
|
className="border px-1 cursor-pointer bg-white hover:bg-blue-100"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
p.ui.side.prop = true;
|
p.ui.side.prop = true;
|
||||||
local.value = JSON.stringify(meta.item, null, 2);
|
|
||||||
p.render();
|
p.render();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue