We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1841a2 commit 80457e5Copy full SHA for 80457e5
tauri/src-tauri/src/main.rs
@@ -155,7 +155,11 @@ fn export_bindings_csv(
155
export_bindings_to_writer(ocel, &bindings, &mut writer, &options).unwrap();
156
FileDialogBuilder::new()
157
.set_title("Save Filtered OCEL")
158
- .add_filter("CSV Files", &["csv"])
+ .add_filter("CSV/XLSX Files", &[
159
+ match options.format {
160
+ TableExportFormat::CSV => "csv",
161
+ TableExportFormat::XLSX => "xlsx",
162
+ }])
163
.set_file_name(&format!(
164
"situation-table.{}",
165
match options.format {
0 commit comments