Skip to content

Commit

Permalink
[SSE] Fix custom delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaRadzhabova committed Nov 29, 2024
1 parent add40ac commit c5fc846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/common/main/lib/view/OpenDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ define([
} else {
var res = this.api.asc_getCSVDelimiter(text);
text = res.text;
delimiter = res.delimiter;
delimiter = res.delimiter || -1;
delimiterChar = delimiter===-1 ? res.delimiterChar || '' : '';
this.cmbDelimiter.setValue(delimiter);
this.inputDelimiter.setVisible(delimiter===-1);
Expand Down

0 comments on commit c5fc846

Please sign in to comment.