Added gateway product type to IfContainer.

This commit is contained in:
Faris Armoush
2025-04-08 15:08:01 +03:00
parent 46f318734a
commit 9d4395e204

View File

@ -72,6 +72,7 @@ class IfContainer extends StatelessWidget {
'2G', '2G',
'3G', '3G',
'WPS' 'WPS'
'GW',
].contains( ].contains(
state.ifItems[index]['productType'])) { state.ifItems[index]['productType'])) {
context.read<RoutineBloc>().add( context.read<RoutineBloc>().add(
@ -129,7 +130,7 @@ class IfContainer extends StatelessWidget {
context context
.read<RoutineBloc>() .read<RoutineBloc>()
.add(AddToIfContainer(mutableData, false)); .add(AddToIfContainer(mutableData, false));
} else if (!['AC', '1G', '2G', '3G', 'WPS'] } else if (!['AC', '1G', '2G', '3G', 'WPS', 'GW']
.contains(mutableData['productType'])) { .contains(mutableData['productType'])) {
context context
.read<RoutineBloc>() .read<RoutineBloc>()