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 b332704 commit dda6905Copy full SHA for dda6905
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
This changelog covers all three packages, as they are (for now) updated as a whole
4
5
+## UNRELEASED
6
+
7
+- Fix back / forward buttons in desktop build #263
8
9
## v0.34.0
10
11
- Add folders with list & grid views, allow drag & drop uploads #228
data-browser/src/helpers/tauri.tsx
@@ -2,10 +2,12 @@
declare global {
interface Window {
- __TAURI__: unknown;
+ __TAURI_METADATA__: unknown;
}
export function isRunningInTauri(): boolean {
- return typeof window !== 'undefined' && window.__TAURI__ !== undefined;
+ return (
+ typeof window !== 'undefined' && window.__TAURI_METADATA__ !== undefined
12
+ );
13
0 commit comments