Tweak a few things (#72)
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 18 KiB |
@ -62,7 +62,7 @@ class AppCoordinator: Coordinator, HasRootNavigator {
|
||||
func handleEvent(_ event: AppEvent, context: AnyObject?) async {
|
||||
switch event {
|
||||
case .didStart:
|
||||
let isEnabled = (try? await services.biometricsRepository.getBiometricUnlockStatus().isEnabled) ?? false
|
||||
let isEnabled = await (try? services.biometricsRepository.getBiometricUnlockStatus().isEnabled) ?? false
|
||||
if isEnabled {
|
||||
showAuth(.vaultUnlock)
|
||||
} else {
|
||||
|
||||
@ -911,4 +911,5 @@
|
||||
"CannotAddKey" = "Cannot add key?";
|
||||
"OnceTheKeyIsSuccessfullyEnteredAddCode" = "Once the key is successfully entered,\nselect Add code to store the key safely";
|
||||
"Steam" = "Steam";
|
||||
"OtpAuthentication" = "OTP Authentication";
|
||||
"OtpType" = "OTP Type";
|
||||
"CreateVerificationCode" = "Create verification code";
|
||||
|
||||
@ -108,7 +108,7 @@ struct EditAuthenticatorItemView: View {
|
||||
|
||||
@ViewBuilder private var advancedOptions: some View {
|
||||
BitwardenMenuField(
|
||||
title: Localizations.otpAuthentication,
|
||||
title: Localizations.otpType,
|
||||
options: TotpTypeOptions.allCases,
|
||||
selection: store.binding(
|
||||
get: \.totpType,
|
||||
|
||||
|
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 165 KiB |
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 104 KiB |
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 103 KiB |
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 138 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 139 KiB |
|
Before Width: | Height: | Size: 201 KiB After Width: | Height: | Size: 206 KiB |
|
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 113 KiB |
|
Before Width: | Height: | Size: 168 KiB After Width: | Height: | Size: 171 KiB |
@ -13,7 +13,7 @@ struct ManualEntryView: View {
|
||||
var body: some View {
|
||||
content
|
||||
.navigationBar(
|
||||
title: Localizations.key,
|
||||
title: Localizations.createVerificationCode,
|
||||
titleDisplayMode: .inline
|
||||
)
|
||||
.toolbar {
|
||||
|
||||
|
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 125 KiB |
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 134 KiB |
|
Before Width: | Height: | Size: 333 KiB After Width: | Height: | Size: 339 KiB |
|
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 133 KiB |
@ -62,7 +62,7 @@ struct ItemListItemRowView: View {
|
||||
///
|
||||
@ViewBuilder
|
||||
private func decorativeImage(_ item: ItemListItem, iconBaseURL: URL?, showWebIcons: Bool) -> some View {
|
||||
placeholderDecorativeImage(Asset.Images.clock)
|
||||
placeholderDecorativeImage(Asset.Images.globe)
|
||||
}
|
||||
|
||||
/// The placeholder image for the decorative image.
|
||||
|
||||