MOBILE-4290 login: Fix site help

QR question logic was inverted, and classes weren't applied properly
main
Noel De Martin 2023-04-20 17:51:26 +02:00
parent 9b182bb714
commit e663ee1d9a
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ export class CoreLoginSiteHelpComponent implements AfterViewInit, OnDestroy {
constructor(protected el: ElementRef<HTMLElement>) {
const getStartedTitle = Translate.instant('core.login.faqsetupsitelinktitle');
const canScanQR = !CoreUtils.canScanQR();
const canScanQR = CoreUtils.canScanQR();
const urlImageHtml = CoreLoginHelperProvider.FAQ_URL_IMAGE_HTML;
const qrCodeImageHtml = CoreLoginHelperProvider.FAQ_QRCODE_IMAGE_HTML;
const setupLinkHtml = `<a href="${GET_STARTED_URL}" title="${getStartedTitle}">${GET_STARTED_URL}</a>`;