Исправлен баг графиков

This commit is contained in:
Dmitry Borisenko
2022-09-18 18:11:50 +02:00
parent 6d49e7181e
commit 3c7606b14d
5 changed files with 187 additions and 125 deletions

View File

@@ -19,6 +19,7 @@
export let settingsJson;
export let configJson;
export let itemsJson;
export let paramsJson;
</script>
<div class="grd-3col1">
@@ -37,4 +38,7 @@
<Card title="itemsJson">
<textarea on:input={itemsJson} rows="23" class="w-full" id="4">{syntaxHighlight(JSON.stringify(itemsJson))}</textarea>
</Card>
<Card title="paramsJson">
<textarea on:input={paramsJson} rows="23" class="w-full" id="4">{syntaxHighlight(JSON.stringify(paramsJson))}</textarea>
</Card>
</div>