We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9a6949 commit 70c0db6Copy full SHA for 70c0db6
src/App.tsx
@@ -678,14 +678,22 @@ function App() {
678
anchor="right"
679
>
680
<Toolbar />
681
+ <Box display={'flex'} marginBottom={2}>
682
+ <Button variant={'contained'} onClick={() => {
683
+ void navigator.clipboard.writeText(JSON.stringify({
684
+ ...configBase,
685
+ Implementations: impls.map(({ config }) => config),
686
+ }, null, 4));
687
+ }}>复制到剪贴板</Button>
688
+ </Box>
689
<TextField
690
multiline={true}
691
fullWidth={true}
692
value={JSON.stringify({
693
...configBase,
694
Implementations: impls.map(({ config }) => config),
695
}, null, 4)}
- InputProps={{
696
+ inputProps={{
697
sx: {
698
fontFamily: [
699
'"JetBrains Mono Variable"',
0 commit comments