Skip to content

Commit

Permalink
Changed description of secure camera access: #222
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Jan 14, 2025
1 parent 900457e commit 56de07f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src-admin/src/components/QrCodeDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,13 @@ export default class QrCodeDialog extends Component<QrCodeDialogProps, QrCodeDia
}}
>
<div>{I18n.t('QR Code scan is not possible')}:</div>
<div>{this.state.qrError}</div>
<div>
{this.state.qrError
? this.state.qrError
.split('\n')
.map((part: string, i: number): React.JSX.Element => <p key={i}>{part}</p>)
: null}
</div>
</div>
) : null}
{!this.state.manualCode && this.state.hideQrCode && !this.state.iframe ? (
Expand Down

0 comments on commit 56de07f

Please sign in to comment.