Skip to content

Commit

Permalink
Fix broken modification checking in long workflow
Browse files Browse the repository at this point in the history
Refs #2802
  • Loading branch information
kimrutherford committed Feb 29, 2024
1 parent 76b2674 commit 5b2152e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions root/curs/modules/ontology.mhtml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Annotation extensions
term-id="{{currentTerm()}}"
is-valid="extensionBuilderIsValid"
annotation-type-name="<% $annotation_type_name %>"
gene-systematic-id="<% $gene_systematic_id %>"
feature-type="finalFeatureType"></extension-builder>
</div>
</div>
Expand Down Expand Up @@ -95,8 +96,10 @@ Annotation extensions

<%init>
my $feature_display_name;
my $gene_systematic_id = '';
if ($feature_type eq 'gene') {
$feature_display_name = $feature->display_name();
$gene_systematic_id = $feature->primary_identifier();
} else {
$feature_display_name = $feature->display_name($c->config());
}
Expand Down

0 comments on commit 5b2152e

Please sign in to comment.