finished implementation of migration from legacy item db to stock db

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2025-12-01 09:09:41 +01:00
parent 90528cfcac
commit a3bcc66b73
6 changed files with 54 additions and 21 deletions

View File

@@ -69,6 +69,9 @@
{#if item}
<LineEditor type="h3" editable={true} value={item.name} onSet={v => patch('name',v)} />
Code: <LineEditor type="span" editable={true} value={item.code} onSet={v => patch('code',v)} />
<div>
{@html item.description.rendered}
</div>
<table>
<tbody>
{#each item.properties.toSorted(byName) as prop}