Skip to content

Commit

Permalink
Fix using alias fields function for non alias field (#17742)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitwel committed Mar 13, 2023
1 parent baf778f commit 7c479c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/layouts/tabular/tabular.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<template v-for="header in tableHeaders" :key="header.value" #[`item.${header.value}`]="{ item }">
<render-display
:value="
!aliasFields || item[header.value] !== undefined
!aliasFields || item[header.value] !== undefined || aliasFields[header.value] === undefined
? get(item, header.value)
: getAliasedValue(item, header.value)
"
Expand Down

0 comments on commit 7c479c5

Please sign in to comment.