diff --git a/clients/web/src/lib/console/fixtures/monitor-data.ts b/clients/web/src/lib/console/fixtures/monitor-data.ts index e122bc62..33a2b7b4 100644 --- a/clients/web/src/lib/console/fixtures/monitor-data.ts +++ b/clients/web/src/lib/console/fixtures/monitor-data.ts @@ -4965,7 +4965,7 @@ export const fakeMonitorData: any = { { label: "main", url: "index.html", - fileDropEnabled: true, + dragDropEnabled: true, center: false, width: 800, height: 600, diff --git a/clients/web/src/lib/tauri/config/tauri-conf-schema-v2-zod.ts b/clients/web/src/lib/tauri/config/tauri-conf-schema-v2-zod.ts index 35a294b8..81b2996b 100644 --- a/clients/web/src/lib/tauri/config/tauri-conf-schema-v2-zod.ts +++ b/clients/web/src/lib/tauri/config/tauri-conf-schema-v2-zod.ts @@ -80,7 +80,7 @@ export const tauriConfigSchemaV2 = z ]) .describe("The user agent for the webview") .optional(), - fileDropEnabled: z + dragDropEnabled: z .boolean() .describe( "Whether the file drop is enabled or not on the webview. By default it is enabled.\n\nDisabling it is required to use drag and drop on the frontend on Windows.", diff --git a/clients/web/src/lib/tauri/config/tauri-conf-schema-v2.json b/clients/web/src/lib/tauri/config/tauri-conf-schema-v2.json index ff67a5a7..db6d65f9 100644 --- a/clients/web/src/lib/tauri/config/tauri-conf-schema-v2.json +++ b/clients/web/src/lib/tauri/config/tauri-conf-schema-v2.json @@ -207,7 +207,7 @@ "description": "The user agent for the webview", "type": ["string", "null"] }, - "fileDropEnabled": { + "dragDropEnabled": { "description": "Whether the file drop is enabled or not on the webview. By default it is enabled.\n\nDisabling it is required to use drag and drop on the frontend on Windows.", "default": true, "type": "boolean"