mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-17 02:25:31 +00:00
updated tag issue for subspace
This commit is contained in:
@ -22,6 +22,7 @@ class CreateSpaceModelDialog extends StatelessWidget {
|
||||
final SpaceTemplateModel? spaceModel;
|
||||
final BuildContext? pageContext;
|
||||
final List<String>? otherSpaceModels;
|
||||
final List<SpaceTemplateModel>? allSpaceModels;
|
||||
|
||||
const CreateSpaceModelDialog(
|
||||
{Key? key,
|
||||
@ -29,7 +30,8 @@ class CreateSpaceModelDialog extends StatelessWidget {
|
||||
this.allTags,
|
||||
this.spaceModel,
|
||||
this.pageContext,
|
||||
this.otherSpaceModels})
|
||||
this.otherSpaceModels,
|
||||
this.allSpaceModels})
|
||||
: super(key: key);
|
||||
|
||||
@override
|
||||
@ -138,6 +140,7 @@ class CreateSpaceModelDialog extends StatelessWidget {
|
||||
spaceNameController: spaceNameController,
|
||||
pageContext: pageContext,
|
||||
otherSpaceModels: otherSpaceModels,
|
||||
allSpaceModels: allSpaceModels,
|
||||
),
|
||||
const SizedBox(height: 20),
|
||||
SizedBox(
|
||||
@ -147,7 +150,8 @@ class CreateSpaceModelDialog extends StatelessWidget {
|
||||
Expanded(
|
||||
child: CancelButton(
|
||||
label: 'Cancel',
|
||||
onPressed: () => Navigator.of(context).pop(),
|
||||
onPressed: (){
|
||||
Navigator.of(context).pop();},
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 10),
|
||||
|
Reference in New Issue
Block a user