Don't try to store null values in the DB for variables; closes #3038
This commit is contained in:
parent
8e7fcb484c
commit
0ae90eacaa
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ class ServerCreationService
|
|||
return [
|
||||
'server_id' => $server->id,
|
||||
'variable_id' => $result->id,
|
||||
'variable_value' => $result->value,
|
||||
'variable_value' => $result->value ?? '',
|
||||
];
|
||||
})->toArray();
|
||||
|
||||
|
|
Loading…
Reference in a new issue