fix: filter orders (#1535)

Co-authored-by: nathan <nathan@appflowy.io>
This commit is contained in:
Nathan.fooo
2022-12-05 15:23:48 +08:00
committed by GitHub
parent 721781f0ae
commit 72dc0b8f67
3 changed files with 17 additions and 15 deletions

View File

@ -167,3 +167,12 @@ class _SelectOptionFilterEditorState extends State<SelectOptionFilterEditor> {
);
}
}
class _FilterPannel extends StatelessWidget {
const _FilterPannel({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container();
}
}