We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0e4b45 commit 5f11476Copy full SHA for 5f11476
1 file changed
archinstall/lib/disk/encryption_menu.py
@@ -163,7 +163,7 @@ def _preview(self, item: MenuItem) -> str | None:
163
if (enc_pwd := self._prev_password()) is not None:
164
output += f'\n{enc_pwd}'
165
166
- if (iter_time := self._prev_iter_time()) is not None:
+ if (enc_type := self._prev_type()) is not None and enc_type != EncryptionType.NoEncryption and (iter_time := self._prev_iter_time()) is not None:
167
output += f'\n{iter_time}'
168
169
if (fido_device := self._prev_hsm()) is not None:
0 commit comments