Skip to content

Commit

Permalink
fix(admin-ui): added country name to view
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed Jun 17, 2022
1 parent 193aa1c commit f5f2c69
Show file tree
Hide file tree
Showing 2 changed files with 1,003 additions and 253 deletions.
6 changes: 3 additions & 3 deletions admin-ui/app/routes/Apps/Gluu/GluuRemovableSelectRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ function GluuRemovableSelectRow({
>
<option value="">{t('actions.choose')}...</option>
{values.map((item, key) => (
<option value={item} key={key}>
{item}
<option value={item.cca2} key={key}>
{item.name}
</option>
))}
</CustomInput>
Expand All @@ -52,7 +52,7 @@ function GluuRemovableSelectRow({
}}
onClick={handler}
>
<i className={'fa fa-fw fa-close'} style={{color:"red"}}></i>
<i className={'fa fa-fw fa-close'} style={{ color: 'red' }}></i>
</div>
</FormGroup>
</GluuTooltip>
Expand Down
Loading

0 comments on commit f5f2c69

Please sign in to comment.