From 7f395b2642063f1248f96f44a8d3902f4ad7f11b Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Mon, 19 Jan 2026 11:13:55 +0100 Subject: [PATCH 1/2] :bug: Fix import tokens dialog default option (#8051) This was intended to be changed on 13fcf3a9bb25. However only the menu order changed, not the default option. Signed-off-by: Dalai Felinto Co-authored-by: Dalai Felinto --- frontend/src/app/main/ui/workspace/tokens/import/modal.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/workspace/tokens/import/modal.cljs b/frontend/src/app/main/ui/workspace/tokens/import/modal.cljs index ad7dcdad89..8e47009bbb 100644 --- a/frontend/src/app/main/ui/workspace/tokens/import/modal.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/import/modal.cljs @@ -273,4 +273,4 @@ {:label (tr "workspace.tokens.import-menu-folder-option") :value :folder}] :on-click handle-import-action :text-render render-button-text - :default :zip}]]])) + :default :file}]]])) From 3ecf509f3b7cf40b5427b10de0a2539c943febbc Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 19 Jan 2026 13:32:01 +0100 Subject: [PATCH 2/2] :wrench: Add missing gif files handling on defaut nginx config --- docker/devenv/files/nginx.conf | 2 +- docker/images/files/nginx.conf.template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/devenv/files/nginx.conf b/docker/devenv/files/nginx.conf index f3a0023ceb..0c227e244d 100644 --- a/docker/devenv/files/nginx.conf +++ b/docker/devenv/files/nginx.conf @@ -223,7 +223,7 @@ http { add_header X-Cache-Status $upstream_cache_status; } - location ~* \.(jpg|png|svg|ttf|woff|woff2)$ { + location ~* \.(jpg|png|svg|ttf|woff|woff2|gif)$ { add_header Cache-Control "public, max-age=604800" always; # 7 days } diff --git a/docker/images/files/nginx.conf.template b/docker/images/files/nginx.conf.template index 55a7f829bc..dca7262f38 100644 --- a/docker/images/files/nginx.conf.template +++ b/docker/images/files/nginx.conf.template @@ -144,7 +144,7 @@ http { location / { include /etc/nginx/overrides/location.d/*.conf; - location ~* \.(js|css|jpg|png|svg|ttf|woff|woff2|wasm)$ { + location ~* \.(js|css|jpg|png|svg|gif|ttf|woff|woff2|wasm)$ { add_header Cache-Control "public, max-age=604800" always; # 7 days }