fix(skill): support .skill file extension in ZIP import dialog (#1240) (#1455)

This commit is contained in:
Dex Miller
2026-03-14 22:47:07 +08:00
committed by GitHub
parent 9e5a3b2dc9
commit f1d2c6045b
+1 -1
View File
@@ -115,7 +115,7 @@ pub async fn open_zip_file_dialog<R: tauri::Runtime>(
let dialog = app.dialog();
let result = dialog
.file()
.add_filter("ZIP", &["zip"])
.add_filter("ZIP / Skill", &["zip", "skill"])
.blocking_pick_file();
Ok(result.map(|p| p.to_string()))