Skip to content

Commit

Permalink
Merge pull request #163 from lcnetdev/bfp-128-update-names
Browse files Browse the repository at this point in the history
[BFP 128] Update label used in simpleLookup
f-osorio authored Dec 11, 2024
2 parents e58236b + b536282 commit d041a9b
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/panels/edit/fields/LookupSimple.vue
Original file line number Diff line number Diff line change
@@ -14,7 +14,6 @@
</template>
<template v-else>


<template v-for="(avl,idx) in simpleLookupValues" >
<span class="bfcode-display-mode-holder-label" :title="structure.propertyLabel">{{profileStore.returnBfCodeLabel(structure)}}:</span>

2 changes: 1 addition & 1 deletion src/lib/utils_network.js
Original file line number Diff line number Diff line change
@@ -216,7 +216,7 @@ const utilsNetwork = {
if (r.hits && r.hits.length>0){
for (let hit of r.hits){
results.metadata.values[hit.uri] = {uri:hit.uri, label: [hit.suggestLabel], authLabel:hit.aLabel, code: [], displayLabel: [hit.suggestLabel] }
results[hit.uri] = [hit.suggestLabel]
results[hit.uri] = [hit.suggestLabel.includes("USE") ? hit.aLabel : hit.suggestLabel]
}

}
2 changes: 1 addition & 1 deletion src/stores/config.js
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ export const useConfigStore = defineStore('config', {

versionMajor: 0,
versionMinor: 17,
versionPatch: 3,
versionPatch: 4,

regionUrls: {

0 comments on commit d041a9b

Please sign in to comment.