Skip to content

Commit 052c9e9

Browse files
[Fix] api fixes of ai-recorder
1 parent 0e43d0e commit 052c9e9

4 files changed

Lines changed: 15 additions & 13 deletions

File tree

Apps/Web/AI_Recorder_2/dist/assets/index-ZxKYERgc.js renamed to Apps/Web/AI_Recorder_2/dist/assets/index-iqPt-ocH.js

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Apps/Web/AI_Recorder_2/dist/assets/index-ZxKYERgc.js.map renamed to Apps/Web/AI_Recorder_2/dist/assets/index-iqPt-ocH.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Apps/Web/AI_Recorder_2/dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> -->
1212
<!-- <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> -->
1313

14-
<script type="module" crossorigin src="/assets/index-ZxKYERgc.js"></script>
14+
<script type="module" crossorigin src="/assets/index-iqPt-ocH.js"></script>
1515
<link rel="stylesheet" crossorigin href="/assets/index-CrwDEiCX.css">
1616
</head>
1717
<body>

Apps/Web/AI_Recorder_2/src/App.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,9 @@ function App() {
314314
TC_Id: result.meta_data.testNo,
315315
step_sequence: result.meta_data.stepNo,
316316
step_data: JSON.stringify(actions.map(action => {
317-
return action.main;
317+
return action.main.map((row, rowIndex) => {
318+
return [...row, rowIndex + 1];
319+
});
318320
})),
319321
step_id: result.meta_data.stepId,
320322
dataset_name: JSON.stringify(actions.map((action, idx) => {

0 commit comments

Comments
 (0)