Skip to content
Snippets Groups Projects
Commit ca6b857d authored by Ole Voldsæter's avatar Ole Voldsæter
Browse files

re meta#254 fet skrift i dropdown

parent aa2690ae
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ build:
stage: build
only:
- master
- vuetify_autocomplete
script:
- npm install --progress=false
- npm run build
......@@ -20,6 +21,7 @@ deploy:
stage: deploy
only:
- master
- vuetify_autocomplete
script:
- rm -rf ~/.aws
- mv .aws ~/
......
......@@ -20,7 +20,7 @@
dense
>
<template v-slot:item="data">
{{data.item.label + ' (' + (data.item.lang_set ? Array.from(data.item.lang_set).sort().join(', ') : 'fritekstsøk' ) + ')'}}
<span class="search-hit">{{data.item.label}} </span> ({{data.item.lang_set ? Array.from(data.item.lang_set).sort().join(', ') : 'fritekstsøk'}})
</template>
</v-autocomplete>
</template>
......@@ -69,7 +69,7 @@
self.items = hits
self.loading = false
})
}, 150)
}, 100)
}
},
watch: {
......@@ -93,5 +93,9 @@
</script>
<style>
<style scoped>
.search-hit {
font-weight: bold;
margin-right: 5px;
}
</style>
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