From bbcc09d426485e57a9edeecc79a245093391283c Mon Sep 17 00:00:00 2001
From: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
Date: Mon, 27 Jan 2020 05:38:40 +0900
Subject: [PATCH] Allow 'internal' device in WebAuthN (#5756)

---
 src/client/app/common/views/components/signin.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/client/app/common/views/components/signin.vue b/src/client/app/common/views/components/signin.vue
index f76f989d6d..bb4a6605bd 100644
--- a/src/client/app/common/views/components/signin.vue
+++ b/src/client/app/common/views/components/signin.vue
@@ -107,7 +107,7 @@ export default Vue.extend({
 					allowCredentials: this.challengeData.securityKeys.map(key => ({
 						id: Buffer.from(key.id, 'hex'),
 						type: 'public-key',
-						transports: ['usb', 'ble', 'nfc']
+						transports: ['usb', 'nfc', 'ble', 'internal']
 					})),
 					timeout: 60 * 1000
 				}