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

Add copyable ID to model details view

parent e559bcdd
No related branches found
No related tags found
1 merge request!1547Add copyable ID to model details view
......@@ -5,8 +5,8 @@
<i class="icon-arrow-left"></i>
Models
</router-link>
<div class="subtitle is-5">Model</div>
<div class="title">{{ model.name }}</div>
<p class="subtitle is-5">Model <ItemId :item-id="model.id" /></p>
<div class="columns">
<div class="column">
......@@ -52,6 +52,7 @@ import { ago, errorParser } from '@/helpers'
import { UUID } from '@/types'
import Model from '@/components/Model'
import { useModelStore, useNotificationStore } from '@/stores'
import ItemId from '@/components/ItemId.vue'
export default defineComponent({
props: {
......@@ -62,7 +63,8 @@ export default defineComponent({
}
},
components: {
Model
Model,
ItemId
},
data: () => ({
loading: false,
......
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