Skip to content

Commit eba2421

Browse files
[CUS-12329] fixed the issue of file name being too long. (#384)
1 parent c496358 commit eba2421

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

csv_file_update_from_upload_section/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.testsigma.addons</groupId>
88
<artifactId>csv_file_update_from_upload_section</artifactId>
9-
<version>1.0.8</version>
9+
<version>1.0.6</version>
1010
<packaging>jar</packaging>
1111

1212
<properties>

csv_file_update_from_upload_section/src/main/java/com/testsigma/addons/web/WriteCsvFileandStorePath.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ public com.testsigma.sdk.Result execute() throws NoSuchElementException {
9393
.build();
9494
List<String[]> data = csvReader.readAll();
9595

96+
// Convert from 1-based (user input) to 0-based index (user gives 1,1 → maps to 0,0)
9697
int rowIndex = targetRow - 1;
9798
int columnIndex = targetColumn - 1;
9899

0 commit comments

Comments
 (0)