scinote-web/app/javascript/vue/forms/renderers/name.vue
andrej-scinote 705fc4da14 Merge pull request #8093 from andrej-scinote/aj_SCI_11354
Fix reordering of the form fields [SCI-11354]
2024-12-10 15:59:39 +01:00

16 lines
235 B
Vue

<template>
<a :href="params.data.urls.show" :title="params.data.name">
{{ params.data.name }}
</a>
</template>
<script>
export default {
props: {
params: {
type: Object,
required: true
}
}
};
</script>