We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a90523 commit 195758aCopy full SHA for 195758a
src/webview/webview.js
@@ -95,6 +95,12 @@ let currentSortDirection = 'asc'; // 'asc' or 'desc'
95
e.preventDefault();
96
e.stopPropagation();
97
98
+ // Blur any currently focused editable cells to ensure changes are saved
99
+ const editableCell = grid.querySelector('[contenteditable="true"]');
100
+ if (editableCell) {
101
+ editableCell.blur();
102
+ }
103
+
104
const columnKey = getColumnKeyFromHeader(header, index);
105
if (columnKey) {
106
sortByColumn(columnKey);
0 commit comments