Skip to content

Commit

Permalink
Merge pull request #1705 from kaitlinnewson/9443-3_4_0
Browse files Browse the repository at this point in the history
pkp/pkp-lib#9443 Add None option to series field in submission wizard
  • Loading branch information
bozana authored Sep 30, 2024
2 parents 0976b34 + c91f033 commit 6d453d7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion classes/components/forms/submission/ForTheEditors.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ protected function addSeriesField(array $series, Publication $publication): void
if (empty($series)) {
return;
}
$seriesOptions = [];
$seriesOptions[] = [
'value' => '',
'label' => __('common.none'),
];
/** @var Section $iSeries */
foreach ($series as $iSeries) {
$seriesOptions[] = [
Expand Down

0 comments on commit 6d453d7

Please sign in to comment.