File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 14521452 ]
14531453 },
14541454 "showParticipantNumber" : {
1455+ "default" : true ,
14551456 "type" : " boolean"
14561457 }
14571458 }
Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ class ProfileStageConfig(BaseModel):
391391 descriptions : StageTextConfig
392392 progress : StageProgressConfig
393393 profileType : ProfileType
394- showParticipantNumber : bool | None = None
394+ showParticipantNumber : bool | None = True
395395
396396
397397class Strategy (StrEnum ):
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export const ProfileStageConfigData = Type.Composite(
2323 Type . Literal ( ProfileType . ANONYMOUS_ANIMAL ) ,
2424 Type . Literal ( ProfileType . ANONYMOUS_PARTICIPANT ) ,
2525 ] ) ,
26- showParticipantNumber : Type . Optional ( Type . Boolean ( ) ) ,
26+ showParticipantNumber : Type . Optional ( Type . Boolean ( { default : true } ) ) ,
2727 } ,
2828 strict ,
2929 ) ,
You can’t perform that action at this time.
0 commit comments