diff --git a/packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx b/packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx index 4e83fd16b..3add1187e 100644 --- a/packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx +++ b/packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx @@ -94,6 +94,12 @@ const EncryptionConfigScreen = (props: Props) => { borderColor: theme.dividerColor, }; + const missingPasswordCellStyle = { + ...theme.textStyle, + border: '3px solid', + borderColor: theme.colorError, + }; + const password = inputPasswords[mk.id] ? inputPasswords[mk.id] : ''; const isActive = props.activeMasterKeyId === mk.id; const activeIcon = isActive ? '✔' : ''; @@ -108,8 +114,15 @@ const EncryptionConfigScreen = (props: Props) => { ); } else { return ( - - onInputPasswordChange(mk, event.target.value)} />{' '} + + onInputPasswordChange(mk, event.target.value)} + /> + {' '}