Skip to content

Commit

Permalink
[NDB_BVL_Instrument] JSON Data support fix DECS field (#7819)
Browse files Browse the repository at this point in the history
  • Loading branch information
ridz1208 committed Nov 17, 2021
1 parent 92970de commit 31fc22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/libraries/NDB_BVL_Instrument.class.inc
Expand Up @@ -1652,7 +1652,7 @@ abstract class NDB_BVL_Instrument extends NDB_Page
function getDataEntryCompletionStatus(): string
{
$data = NDB_BVL_Instrument::loadInstanceData($this);
return $data["Data_entry_completion_status"];
return $data["Data_entry_completion_status"] ?? '';
}


Expand Down

0 comments on commit 31fc22f

Please sign in to comment.