Skip to content
Snippets Groups Projects
Commit a4cf5eb8 authored by Orlin Malkja's avatar Orlin Malkja
Browse files

style: minor

parent e02d959e
No related branches found
No related tags found
1 merge request!297Show Nested metadata & improve its styling
Pipeline #459340 passed
......@@ -5,7 +5,7 @@
</q-item-label>
<MetadataLink v-if="isLink()" :url="item.key" :text="item.value"/>
<MetadataValue v-else :value="item.value" />
<MetadataItem v-for="(childItem, idx) in childItems" :key="idx" :item="childItem" class="nested_metadata"/>
<MetadataItem v-for="(childItem, idx) in childItems" :key="idx" :item="childItem" class="nested-metadata"/>
</div>
</template>
......@@ -32,7 +32,7 @@ function isLink() {
<style scoped>
.nested_metadata {
.nested-metadata {
margin-left: 8px;
margin-top: 2.5px;
}
......
<template>
<div class="metadata-value">
<span> {{ value }} </span>
<span v-html="value" />
</div>
</template>
......
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