ui: fix authentication view indentation error

This commit is contained in:
liushuyu 2022-11-27 17:20:12 -07:00
parent d8df3b3114
commit 08ab3c369e
No known key found for this signature in database
GPG Key ID: 23D1CE4534419437
2 changed files with 5 additions and 4 deletions

View File

@ -476,6 +476,7 @@ impl InstallerFramework {
is_launcher: false, is_launcher: false,
burn_after_exit: false, burn_after_exit: false,
launcher_path: None, launcher_path: None,
is_windows: cfg!(windows),
} }
} }

View File

@ -188,11 +188,11 @@ export default {
} }
}, },
directives: { directives: {
scroll: { scroll: {
inserted: function (el) { inserted: function (el) {
el.scrollIntoView() el.scrollIntoView()
}
} }
}
} }
} }
</script> </script>