@humandialog/forms.svelte 1.8.3 → 1.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -253,7 +253,12 @@ async function dblclick(e) {
|
|
|
253
253
|
<div class="w-full flex flex-row justify-between">
|
|
254
254
|
<span></span>
|
|
255
255
|
<span></span>
|
|
256
|
-
<div class="flex flex-row text-orange-800 dark:text-orange-200"
|
|
256
|
+
<div class="flex flex-row text-orange-800 dark:text-orange-200">
|
|
257
|
+
{#if columnDef.state >= 0}
|
|
258
|
+
<span><Icon icon="barcode" s/></span>
|
|
259
|
+
<span>{Number(columnDef.state/1000)}</span>
|
|
260
|
+
{/if}
|
|
261
|
+
</div>
|
|
257
262
|
|
|
258
263
|
</div>
|
|
259
264
|
</figcaption>
|