Skip to content

Commit

Permalink
Fixes #896
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncox committed Jun 23, 2020
1 parent 83fbc92 commit b14c7af
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions app/modules/handler/containers/Stage/Identity.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class PromptStageIdentity extends Component<Props> {
</Grid.Row>
<Grid.Row centered columns={1}>
<Grid.Column width={8}>
<Form>
<Form style={{ zIndex: 9999 }}>
<Form.Field>
<label>{t('handler_containers_stage_identity_label')}</label>
<GlobalAccountDropdownSelect
Expand All @@ -66,26 +66,26 @@ class PromptStageIdentity extends Component<Props> {
onSelect={onSelect}
/>
</Form.Field>
{(!canSign && couldSignWithDevice)
? (
<Message
content={t('handler_containers_stage_identity_message_one')}
info
/>
)
: false
}
{(mode === 'watch')
? (
<Message
content={t('handler_containers_stage_identity_message_two')}
color="red"
icon="warning sign"
/>
)
: false
}
</Form>
{(!canSign && couldSignWithDevice)
? (
<Message
content={t('handler_containers_stage_identity_message_one')}
info
/>
)
: false
}
{(mode === 'watch')
? (
<Message
content={t('handler_containers_stage_identity_message_two')}
color="red"
icon="warning sign"
/>
)
: false
}
</Grid.Column>
{(!canSign && couldSignWithDevice)
? (
Expand Down

0 comments on commit b14c7af

Please sign in to comment.