From 08ab3c369ee9a791a3afc0eae2acd09b03754a17 Mon Sep 17 00:00:00 2001 From: liushuyu Date: Sun, 27 Nov 2022 17:20:12 -0700 Subject: [PATCH] ui: fix authentication view indentation error --- src/installer.rs | 1 + ui/src/views/AuthenticationView.vue | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/installer.rs b/src/installer.rs index 755aac8..0341d3c 100644 --- a/src/installer.rs +++ b/src/installer.rs @@ -476,6 +476,7 @@ impl InstallerFramework { is_launcher: false, burn_after_exit: false, launcher_path: None, + is_windows: cfg!(windows), } } diff --git a/ui/src/views/AuthenticationView.vue b/ui/src/views/AuthenticationView.vue index 26eeb5a..d648249 100644 --- a/ui/src/views/AuthenticationView.vue +++ b/ui/src/views/AuthenticationView.vue @@ -188,11 +188,11 @@ export default { } }, directives: { - scroll: { - inserted: function (el) { - el.scrollIntoView() - } + scroll: { + inserted: function (el) { + el.scrollIntoView() } + } } }