Skip to content
Snippets Groups Projects
Commit 93ed68bb authored by ml bonhomme's avatar ml bonhomme :bee: Committed by Erwan Rouchet
Browse files

Add collapsible model configuration in worker run details

parent 484f3dba
No related branches found
No related tags found
1 merge request!1482Add collapsible model configuration in worker run details
......@@ -76,6 +76,10 @@
<strong>Model ID: </strong>
<ItemId :item-id="workerRun.model_version.model.id" />
</p>
<details>
<summary><strong>Configuration</strong></summary>
<pre>{{ workerRun.model_version.configuration }}</pre>
</details>
</div>
</div>
<div v-else class="mb-5">
......@@ -91,10 +95,10 @@
<strong>Name: </strong>
{{ workerRun.configuration.name || '—' }}
</p>
<p>
<strong>Configuration: </strong>
<details>
<summary><strong>Configuration</strong></summary>
<pre>{{ workerRun.configuration.configuration }}</pre>
</p>
</details>
<p class="mt-2">
<strong>Configuration ID: </strong>
<ItemId :item-id="workerRun.configuration.id" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment