From 8677865e47dc7393c8bcc440b10c13ba4ff80e0d Mon Sep 17 00:00:00 2001 From: Oleksandr Koltunov Date: Thu, 10 Sep 2026 11:28:16 +0300 Subject: [PATCH 1/2] fix(): disable Tauri drag-drop handler --- src-tauri/src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index b9de961..2122711 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -595,6 +595,11 @@ fn open_main_window(app: &AppHandle) -> Result<(), String> { .visible(false) .on_new_window(move |url, features| handle_new_window(&handler_app, url, features)) .on_page_load(handle_page_load) + // Tauri's file-drop handler swallows every drag session at the + // NSDraggingDestination / WebView2 layer, so the page never sees + // dragover/drop and HTML5 drag-and-drop (the ticket board) is dead. + // Nothing here consumes file drops, so opt out of the handler. + .disable_drag_drop_handler() .build() .map_err(|e| e.to_string())?; spawn_show_fallback(&window); @@ -710,6 +715,7 @@ fn handle_new_window( .visible(false) .on_new_window(move |u, f| handle_new_window(&child_app, u, f)) .on_page_load(handle_page_load) + .disable_drag_drop_handler() .window_features(features) .build() { From a6b400d4c60c78212fcd949c80cfbf97d9010793 Mon Sep 17 00:00:00 2001 From: Oleksandr Koltunov Date: Fri, 11 Sep 2026 13:48:35 +0300 Subject: [PATCH 2/2] fix(): code review lint --- .github/actionlint.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/actionlint.yaml diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml new file mode 100644 index 0000000..88ead3b --- /dev/null +++ b/.github/actionlint.yaml @@ -0,0 +1,10 @@ +# Generated and re-synced by the Flamingo hub (flamingo[bot]); local edits are +# overwritten on the next sync, so findings must be fixed in the hub template. +# YAML syntax is still enforced by the yaml-lint step. +paths: + .github/workflows/doc-orchestrator.yml: + ignore: + - '.+' + .github/workflows/flamingo-code-review.yml: + ignore: + - '.+' \ No newline at end of file