Skip to content

Commit

Permalink
SchemeDetail: Don't show creator if publisher doesn't exist (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Nov 22, 2021
1 parent bd9e91f commit 1dfba7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SchemeDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export default {
},
methods: {
licenseAttribution(detail) {
let organisation = detail.publisher || detail.creator
let organisation = detail.publisher
if (!organisation || organisation.length == 0) {
return null
}
Expand Down

0 comments on commit 1dfba7d

Please sign in to comment.