From b2caa1777031e34bc43f1a15c3f56663d6870533 Mon Sep 17 00:00:00 2001 From: Abian Suarez Date: Tue, 11 Nov 2025 13:26:04 +0000 Subject: [PATCH] fix: set minimum width and height for the docker-db-manager window --- src-tauri/tauri.conf.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 430e446..735d229 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -14,7 +14,9 @@ { "title": "docker-db-manager", "width": 800, + "minWidth": 800, "height": 500, + "minHeight": 500, "center": true, "titleBarStyle": "Overlay", "hiddenTitle": true