mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
Fixed Linked card makes board not load when CustomField definition is undefined.
Thanks to olivierlambert and xet7 ! Fixes #3367
This commit is contained in:
parent
78f818bbb0
commit
0d5f33299e
1 changed files with 1 additions and 1 deletions
|
@ -693,7 +693,7 @@ Cards.helpers({
|
|||
const definition = definitions.find(definition => {
|
||||
return definition._id === customField._id;
|
||||
});
|
||||
if (!definition) {
|
||||
if (definition === undefined) {
|
||||
return {};
|
||||
}
|
||||
//search for "True Value" which is for DropDowns other then the Value (which is the id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue