We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d92bee commit 662d40aCopy full SHA for 662d40a
src/attack_flow_builder/src/assets/configuration/AttackFlowCommandProcessor/AttackFlowCommandProcessor.ts
@@ -93,7 +93,7 @@ export class AttackFlowCommandProcessor implements SynchronousCommandProcessor {
93
if(tactText === undefined) {
94
return null;
95
}
96
- return tactText.split(/TA?\d+/)[1].trim();
+ return tactText.split(/TA\d+/)[1].trim();
97
98
99
/**
@@ -120,7 +120,7 @@ export class AttackFlowCommandProcessor implements SynchronousCommandProcessor {
120
if(techText === undefined) {
121
122
123
- return techText.split(/TA?\d+/)[1].trim();
+ return techText.split(/T\d+(?:\.\d+)?/)[1].trim();
124
125
126
0 commit comments