Skip to content

Commit

Permalink
Merge pull request #503 from edmcouncil/502-show-version-selection-wh…
Browse files Browse the repository at this point in the history
…en-there-is-one-version-in-the-list

Show version selection when there is one version in the list
  • Loading branch information
mereolog authored Nov 22, 2024
2 parents 83e0cbf + c1c86af commit 3bd6f3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion general/pages/ontology/[...resource].vue
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ export default {
);
},
hasVersions() {
return this.ontologyVersions.data.length > 1;
return this.ontologyVersions.data.length >= 1;
},
isComparing() {
return (
Expand Down

0 comments on commit 3bd6f3b

Please sign in to comment.