mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
fix: mobile grid launch review (#4839)
* fix: mobile database sort editor not working on prod * fix: don't pop after creating field
This commit is contained in:
parent
a180cfcdc2
commit
677617dcf2
@ -94,9 +94,6 @@ void mobileCreateFieldWorkflow(
|
|||||||
if (optionValues != null) {
|
if (optionValues != null) {
|
||||||
await optionValues.create(viewId: viewId, position: position);
|
await optionValues.create(viewId: viewId, position: position);
|
||||||
}
|
}
|
||||||
if (context.mounted) {
|
|
||||||
context.pop();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Used to edit a field.
|
/// Used to edit a field.
|
||||||
|
@ -262,11 +262,9 @@ class _SortItem extends StatelessWidget {
|
|||||||
children: [
|
children: [
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 12.0),
|
padding: const EdgeInsets.symmetric(horizontal: 12.0),
|
||||||
child: Expanded(
|
child: FlowyText.medium(
|
||||||
child: FlowyText.medium(
|
LocaleKeys.grid_sort_by.tr(),
|
||||||
LocaleKeys.grid_sort_by.tr(),
|
fontSize: 15,
|
||||||
fontSize: 15,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const VSpace(10),
|
const VSpace(10),
|
||||||
|
Loading…
Reference in New Issue
Block a user