Skip to content

Commit

Permalink
Clean console
Browse files Browse the repository at this point in the history
  • Loading branch information
f-osorio committed Nov 15, 2024
1 parent 9173b2e commit c1d9c91
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/stores/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -1843,10 +1843,6 @@ export const useProfileStore = defineStore('profile', {
let valueLocation = utilsProfile.returnValueFromPropertyPath(pt,propertyPath)
let deepestLevelURI = propertyPath[propertyPath.length-1].propertyURI

console.info("pt", JSON.parse(JSON.stringify(pt)))
console.info("valueLocation", valueLocation)
console.info("deepestLevelURI", deepestLevelURI)

if (valueLocation){

let values = []
Expand All @@ -1861,7 +1857,6 @@ export const useProfileStore = defineStore('profile', {
}

for (let lP of LABEL_PREDICATES){
console.info("lP", lP)
if (v[lP] && v[lP][0][lP]){
label = v[lP][0][lP]
break
Expand All @@ -1871,9 +1866,7 @@ export const useProfileStore = defineStore('profile', {
// look for bf:title -> bf:mainTitle
if (!label){
for (let lP1 of LABEL_PREDICATES){
console.info("lP1", lP1)
for (let lP2 of LABEL_PREDICATES){
console.info("lP2", lP2)
if (v[lP1][0][lP2] && v[lP1][0][lP2][0][lP2]){
label = v[lP1][0][lP2][0][lP2]
break
Expand Down

0 comments on commit c1d9c91

Please sign in to comment.