mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-24 04:59:26 +01:00
fix: set email dialog
This commit is contained in:
parent
c1bf767dc1
commit
72e325aee8
@ -100,7 +100,7 @@ class MatrixState extends State<Matrix> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
final storeItem = null; //await store.getItem(SettingKeys.showNoPid);
|
final storeItem = await store.getItem(SettingKeys.showNoPid);
|
||||||
final configOptionMissing = storeItem == null || storeItem.isEmpty;
|
final configOptionMissing = storeItem == null || storeItem.isEmpty;
|
||||||
if (configOptionMissing || (!configOptionMissing && storeItem == '1')) {
|
if (configOptionMissing || (!configOptionMissing && storeItem == '1')) {
|
||||||
if (configOptionMissing) {
|
if (configOptionMissing) {
|
||||||
@ -120,7 +120,7 @@ class MatrixState extends State<Matrix> {
|
|||||||
shape: RoundedRectangleBorder(
|
shape: RoundedRectangleBorder(
|
||||||
borderRadius: BorderRadius.circular(6),
|
borderRadius: BorderRadius.circular(6),
|
||||||
),
|
),
|
||||||
child: Text(L10n.of(context).passwordRecovery),
|
child: Text(L10n.of(context).edit),
|
||||||
onPressed: () => Navigator.of(context).push(
|
onPressed: () => Navigator.of(context).push(
|
||||||
AppRoute.defaultRoute(
|
AppRoute.defaultRoute(
|
||||||
context,
|
context,
|
||||||
|
@ -559,6 +559,11 @@
|
|||||||
"type": "text",
|
"type": "text",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
|
"edit": "Edit",
|
||||||
|
"@edit": {
|
||||||
|
"type": "text",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
"enableEmotesGlobally": "Enable emote pack globally",
|
"enableEmotesGlobally": "Enable emote pack globally",
|
||||||
"@enableEmotesGlobally": {
|
"@enableEmotesGlobally": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
Loading…
Reference in New Issue
Block a user