Skip to content

Commit

Permalink
Fix updating null language variables
Browse files Browse the repository at this point in the history
  • Loading branch information
afbora committed Aug 16, 2024
1 parent 4d3213f commit d3e41ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/areas/languages/dialogs.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
'size' => 'large',
'value' => [
'key' => $variable->key(),
'value' => $variable->value()
'value' => $variable->value() ?? ''
]
],
];
Expand Down

0 comments on commit d3e41ac

Please sign in to comment.