mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-11 10:29:39 +00:00
Bump version
This commit is contained in:
parent
3c3cb376e2
commit
bf03f61668
|
@ -83,7 +83,7 @@ class _RecoveryKeyContentState extends State<RecoveryKeyContent> {
|
|||
if (_isConfigurationVisible || !keyStatus.exists)
|
||||
const RecoveryKeyConfiguration(),
|
||||
const SizedBox(height: 16),
|
||||
if (!_isConfigurationVisible && keyStatus.isValid)
|
||||
if (!_isConfigurationVisible && keyStatus.isValid && keyStatus.exists)
|
||||
BrandButton.text(
|
||||
title: 'recovery_key.key_replace_button'.tr(),
|
||||
onPressed: () {
|
||||
|
@ -92,7 +92,7 @@ class _RecoveryKeyContentState extends State<RecoveryKeyContent> {
|
|||
});
|
||||
},
|
||||
),
|
||||
if (!_isConfigurationVisible && !keyStatus.isValid)
|
||||
if (!_isConfigurationVisible && !keyStatus.isValid && keyStatus.exists)
|
||||
FilledButton(
|
||||
title: 'recovery_key.key_replace_button'.tr(),
|
||||
onPressed: () {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: selfprivacy
|
||||
description: selfprivacy.org
|
||||
publish_to: 'none'
|
||||
version: 0.5.3+14
|
||||
version: 0.6.0+15
|
||||
|
||||
environment:
|
||||
sdk: '>=2.17.0 <3.0.0'
|
||||
|
|
Loading…
Reference in a new issue