Skip to content

Commit

Permalink
pkp#6099 Added description to country field.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasraoni committed Mar 13, 2021
1 parent 3bd4549 commit f535cb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion classes/components/forms/context/PKPContextForm.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public function __construct($action, $locales, $baseUrl, $context) {
'value' => $context ? $context->getData('acronym') : null,
]))
->addField(new FieldSelect('country', [
'label' => __('manager.setup.selectCountry'),
'label' => __('common.country'),
'description' => __('manager.setup.selectCountry'),
'options' => $countries,
'isRequired' => true,
'value' => $context ? $context->getData('country') : null,
Expand Down

0 comments on commit f535cb4

Please sign in to comment.