fixing pub sort
This commit is contained in:
parent
c4d2ddc6b3
commit
43f374baaa
|
|
@ -84,11 +84,11 @@ services:
|
||||||
container_name: portfolio-nuxt
|
container_name: portfolio-nuxt
|
||||||
build: ./portfolio-nuxt
|
build: ./portfolio-nuxt
|
||||||
# To rebuild the site and the server run this
|
# To rebuild the site and the server run this
|
||||||
command: bash -c "npm run build && node .output/server/index.mjs"
|
#command: bash -c "npm run build && node .output/server/index.mjs"
|
||||||
# To just start the server run this
|
# To just start the server run this
|
||||||
#command: bash -c "node .output/server/index.mjs"
|
#command: bash -c "node .output/server/index.mjs"
|
||||||
# To start the server in dev mode
|
# To start the server in dev mode
|
||||||
#command: bash -c "npm run dev -o"
|
command: bash -c "npm run dev -o"
|
||||||
volumes:
|
volumes:
|
||||||
- portfolio-nuxt:/src/node_modules
|
- portfolio-nuxt:/src/node_modules
|
||||||
- ./portfolio-nuxt:/src
|
- ./portfolio-nuxt:/src
|
||||||
|
|
|
||||||
|
|
@ -149,16 +149,16 @@
|
||||||
pub.entryTags.howpublished = "/pubs/" + pub.entryTags.howpublished
|
pub.entryTags.howpublished = "/pubs/" + pub.entryTags.howpublished
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return pubs.sort((a,b) => (a.citationKey > b.citationKey) ? -1 : ((b.citationKey > a.citationKey) ? 1 : 0))
|
||||||
|
/*
|
||||||
return pubs.sort((a,b) => {
|
return pubs.sort((a,b) => {
|
||||||
/*
|
|
||||||
let aPrime = 5000
|
let aPrime = 5000
|
||||||
let bPrime = 5000
|
let bPrime = 5000
|
||||||
if(a.entryTags.year === 'forthcoming'){aPrime = 5000} else {aPrime = a.entryTags.year}
|
if(a.entryTags.year === 'forthcoming'){aPrime = 5000} else {aPrime = a.entryTags.year}
|
||||||
if(b.entryTags.year === 'forthcoming'){bPrime = 5000} else {bPrime = b.entryTags.year}
|
if(b.entryTags.year === 'forthcoming'){bPrime = 5000} else {bPrime = b.entryTags.year}
|
||||||
return bPrime - aPrime
|
return bPrime - aPrime
|
||||||
*/
|
|
||||||
a.citationKey - b.citationKey
|
|
||||||
})
|
})
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue