Skip to content
This repository was archived by the owner on Mar 9, 2025. It is now read-only.

Commit 5f6f7b5

Browse files
authored
Merge pull request #823 from trey-wallis/dev
8.9.1 Former-commit-id: 3f6ce60
2 parents 6e60ba7 + 1c4d917 commit 5f6f7b5

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"fundingUrl": {
1010
"Buymeacoffee": "https://www.buymeacoffee.com/treywallis"
1111
},
12-
"version": "8.9.0"
12+
"version": "8.9.1"
1313
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-dataloom",
3-
"version": "8.9.0",
3+
"version": "8.9.1",
44
"description": "Weave together data from diverse sources into a cohesive table view. Inspired by Excel Spreadsheets and Notion.so.",
55
"main": "main.js",
66
"scripts": {

src/react/shared/menu-provider/hooks.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@ export const useMenu = (
5454
}
5555

5656
const handleClose = React.useCallback(() => {
57+
if (!isOpen) return;
58+
5759
onClose(id);
58-
}, [id, onClose]);
60+
}, [id, isOpen, onClose]);
5961

6062
const handleCloseRequestClear = React.useCallback(() => {
6163
onCloseRequestClear(id);

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,6 @@
131131
"8.7.1": "1.2.0",
132132
"8.7.2": "1.2.0",
133133
"8.8.0": "1.2.0",
134-
"8.9.0": "1.2.0"
134+
"8.9.0": "1.2.0",
135+
"8.9.1": "1.2.0"
135136
}

0 commit comments

Comments
 (0)