Преглед на файлове

refactor: remove useless popoverMutex from _AddOptionButton widget

Cyrine-benabid преди 2 години
родител
ревизия
c7d8a0b7c3
променени са 1 файла, в които са добавени 2 реда и са изтрити 6 реда
  1. 2 6
      frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option/select_option.dart

+ 2 - 6
frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option/select_option.dart

@@ -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) {