Skip to content

Commit

Permalink
minor bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinDo committed Aug 30, 2024
1 parent 867835c commit eb1c846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend_celery/webapp/static/js/variant_addition.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ function show_clinvar_upload_status(color_class, summary, inner_text) {
const pill_id = "clinvar_status_pill"
var prepend_html = null

if (summary["needs_upload"] && !["progress", "processing", "submitted", "pending", "waiting", "requesting"].includes(summary["status"])) {
if (summary["needs_upload"] && !["progress", "processing", "submitted", "pending", "waiting", "requesting", "skipped"].includes(summary["status"])) {
prepend_html = create_exclamation_mark()
add_tooltip(prepend_html, "The consensus classification needs to be uploaded to ClinVar!")
}
Expand Down

0 comments on commit eb1c846

Please sign in to comment.