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 f062313 commit db88e35Copy full SHA for db88e35
src/lib/components/v2/projects/datasets/DatasetInfoModal.svelte
@@ -95,7 +95,7 @@
95
}
96
</script>
97
98
-<Modal id="datasetInfoModal" centered={true} scrollable={true} {onOpen} bind:this={modal}>
+<Modal id="datasetInfoModal" centered={true} scrollable={true} {onOpen} bind:this={modal} size="lg">
99
<svelte:fragment slot="header">
100
<h5 class="modal-title">Dataset properties</h5>
101
</svelte:fragment>
@@ -200,7 +200,6 @@
200
</div>
201
{:else}
202
<span>
203
- {dataset.zarr_dir}
204
<button
205
class="btn btn-primary float-end pt-0 pb-0"
206
on:click={() => (editZarrDir = true)}
@@ -209,6 +208,7 @@
209
208
<i class="bi bi-pencil" />
210
Edit
211
</button>
+ <pre>{dataset.zarr_dir}</pre>
212
</span>
213
{/if}
214
</li>
0 commit comments