From 792340a73bc406428b964e10536bf89f6b1f2613 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Sun, 25 Aug 2024 10:59:33 -0300 Subject: [PATCH] fix(utils): minimum_webview2_version config kebab-case alias (#10773) --- core/tauri-utils/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tauri-utils/src/config.rs b/core/tauri-utils/src/config.rs index d91bcc810cec..586b8bbab671 100644 --- a/core/tauri-utils/src/config.rs +++ b/core/tauri-utils/src/config.rs @@ -841,7 +841,7 @@ pub struct NsisConfig { /// Try to ensure that the WebView2 version is equal to or newer than this version, /// if the user's WebView2 is older than this version, /// the installer will try to trigger a WebView2 update. - #[serde(alias = "ensure-webview2-version")] + #[serde(alias = "minimum-webview2-version")] pub minimum_webview2_version: Option, }