Fix 'failed to load group' on click
The detail-panel insertion logic mixed parent contexts: it called grid.parentNode.insertBefore() but used a child-of-grid as the reference node. insertBefore requires the reference node to be a child of the target parent — it threw 'node is not a child of this node' on every click. Replaced the inter-row positioning with simple insert-after-grid. Same visual outcome since panel.scrollIntoView() handles user focus. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2
debian/build-deb.sh
vendored
2
debian/build-deb.sh
vendored
@@ -13,7 +13,7 @@ BUILD_DIR="$REPO_ROOT/build/deb"
|
||||
|
||||
# ── Config ────────────────────────────────────────────────────────────────────
|
||||
PKG_NAME="dupfinder"
|
||||
PKG_VERSION="1.0.9"
|
||||
PKG_VERSION="1.0.10"
|
||||
PKG_ARCH="amd64"
|
||||
DEB_FILE="${PKG_NAME}_${PKG_VERSION}_${PKG_ARCH}.deb"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user