From 9ba0b8ccfa546a2fd76e0fc2ff68a748abe64848 Mon Sep 17 00:00:00 2001 From: ikram Date: Mon, 13 Jul 2020 15:28:31 -0400 Subject: Visualization of the VF Module Sequencing Issue-ID: VID-860 In this user story, we plan to allow the user to visually see the sequence numbers when a VF module is added from the left panel of the drawing board onto the right one. Note: The idea that the sequence change when a VF Module is dragged up and down is not part of the scope of this story - we will deliver that separately. This is only about the default sequencing that the drawing board renders when a new VF module is created into the 'instance' part of the drawing board from the 'model' part of the drawing board. Signed-off-by: ikram Change-Id: Iadd5cef1012f8ef5c670bbd2c46950680a9e6b0e --- vid-webpack-master/src/app/shared/models/vfModuleTreeNode.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'vid-webpack-master/src/app/shared/models/vfModuleTreeNode.ts') diff --git a/vid-webpack-master/src/app/shared/models/vfModuleTreeNode.ts b/vid-webpack-master/src/app/shared/models/vfModuleTreeNode.ts index e3d1b79b0..166d90f62 100644 --- a/vid-webpack-master/src/app/shared/models/vfModuleTreeNode.ts +++ b/vid-webpack-master/src/app/shared/models/vfModuleTreeNode.ts @@ -10,6 +10,7 @@ export class VfModuleTreeNode extends TreeNodeModel{ menuActions: { [p: string]: { method: Function; visible: Function; enable: Function } }; isFailed: boolean; statusMessage?: string; + position: number; constructor(vfModuleInstance: VfModuleInstance, vfModuleModel: VfModule, vfModuleModelName: string, dynamicInputs: any, isEcompGeneratedNaming: boolean, dynamicModelName : string){ super(vfModuleInstance,vfModuleModel); -- cgit 1.2.3-korg