Skip to content

Commit

Permalink
fix: displayed pedigree in filter interface is wrong (#2214) (#2216)
Browse files Browse the repository at this point in the history
  • Loading branch information
stolpeo authored Jan 29, 2025
1 parent cfd567e commit 5b7f4fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions backend/config/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@

from .base import * # noqa

# http://docs.celeryproject.org/en/latest/userguide/configuration.html#task-always-eager
CELERY_TASK_ALWAYS_EAGER = True
# http://docs.celeryproject.org/en/latest/userguide/configuration.html#task-eager-propagates
CELERY_TASK_EAGER_PROPAGATES = True

# DEBUG
# ------------------------------------------------------------------------------
DEBUG = env.bool("DJANGO_DEBUG", default=True)
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/variants/components/FilterForm/GenotypePane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ defineExpose({ v$ })
<td class="text-muted">{{ props.case.name }}</td>
<td>{{ displayName(item.name) }}</td>
<td>{{ getRole(item.name) }}</td>
<td>{{ displayName(item.name) }}</td>
<td>{{ displayName(item.name) }}</td>
<td>{{ displayName(item.father) }}</td>
<td>{{ displayName(item.mother) }}</td>
<td class="text-center">
<FilterFormGenotypePaneSex :sex="item.sex" />
</td>
Expand Down

0 comments on commit 5b7f4fd

Please sign in to comment.