mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-23 09:08:24 +00:00
refactor: remove useless popoverMutex from _AddOptionButton widget
This commit is contained in:
parent
286c89bf74
commit
c7d8a0b7c3
1 changed files with 2 additions and 6 deletions
|
|
@ -52,7 +52,7 @@ class SelectOptionTypeOptionWidget extends StatelessWidget {
|
|||
),
|
||||
),
|
||||
if (state.options.isEmpty && !state.isEditingOption)
|
||||
_AddOptionButton(popoverMutex: popoverMutex),
|
||||
const _AddOptionButton(),
|
||||
_OptionList(popoverMutex: popoverMutex)
|
||||
];
|
||||
|
||||
|
|
@ -231,11 +231,7 @@ class _OptionCellState extends State<_OptionCell> {
|
|||
}
|
||||
|
||||
class _AddOptionButton extends StatelessWidget {
|
||||
final PopoverMutex? popoverMutex;
|
||||
const _AddOptionButton({
|
||||
Key? key,
|
||||
this.popoverMutex,
|
||||
}) : super(key: key);
|
||||
const _AddOptionButton({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue