Add behavior select conter layout

This commit is contained in:
2022-03-28 21:13:59 +08:00
parent cdc2eb8feb
commit 072b3682c9
8 changed files with 54 additions and 18 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { BehaviorRecorder, IAnyBehaviorRecorder } from "@Model/Behavior";
import { Template } from "./Template";
const AllBehaviors: IAnyBehaviorRecorder[] = new Array(20).fill(0).map((_, i) => {
const AllBehaviors: IAnyBehaviorRecorder[] = new Array(4).fill(0).map((_, i) => {
let behavior = new BehaviorRecorder(Template);
behavior.behaviorId = behavior.behaviorId + i;
return behavior;