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: ...@@ -7,6 +7,7 @@ build:
stage: build stage: build
only: only:
- master - master
- vuetify_autocomplete
script: script:
- npm install --progress=false - npm install --progress=false
- npm run build - npm run build
...@@ -20,6 +21,7 @@ deploy: ...@@ -20,6 +21,7 @@ deploy:
stage: deploy stage: deploy
only: only:
- master - master
- vuetify_autocomplete
script: script:
- rm -rf ~/.aws - rm -rf ~/.aws
- mv .aws ~/ - mv .aws ~/
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
dense dense
> >
<template v-slot:item="data"> <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> </template>
</v-autocomplete> </v-autocomplete>
</template> </template>
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
self.items = hits self.items = hits
self.loading = false self.loading = false
}) })
}, 150) }, 100)
} }
}, },
watch: { watch: {
...@@ -93,5 +93,9 @@ ...@@ -93,5 +93,9 @@
</script> </script>
<style> <style scoped>
.search-hit {
font-weight: bold;
margin-right: 5px;
}
</style> </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