Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
temi committed Jan 10, 2025
1 parent 88ff0e6 commit b6223a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grails-app/assets/javascripts/speciesModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ var SpeciesViewModel = function(data, options, context) {
}

if (self.guid() && !options.printable) {
if (SPECIAL_GUIDS.indexOf(self.guid()) === -1) {
if (SPECIAL_GUIDS.indexOf(self.guid()) >= 0) {
var profileInfo = "No profile available";
self.transients.speciesInformation(profileInfo);
}
Expand Down

0 comments on commit b6223a4

Please sign in to comment.