From de8c79395f3542f9cd7c20862d0cf8652b529da8 Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Wed, 2 Jul 2025 21:06:47 +0200 Subject: [PATCH] Fixed imports page buttons in both light and dark mode. #1481 --- CHANGELOG.md | 8 +++++++- app/views/imports/index.html.erb | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20458ada..946eb713 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -# [0.29.0] - 2025-06-30 +# [0.29.1] - UNRELEASED + +## Fixed + +- Buttons on the imports page now looks better in both light and dark mode. #1481 + +# [0.29.0] - 2025-07-02 You can now move your user data between Dawarich instances. Simply go to your Account settings and click on the "Export my data" button under the password section. An export will be created and you will be able to download it on Exports page once it's ready. diff --git a/app/views/imports/index.html.erb b/app/views/imports/index.html.erb index 431ab51b..f86c2c5d 100644 --- a/app/views/imports/index.html.erb +++ b/app/views/imports/index.html.erb @@ -8,12 +8,12 @@ <% if current_user.safe_settings.immich_url && current_user.safe_settings.immich_api_key %> <%= link_to 'Import Immich data', settings_background_jobs_path(job_name: 'start_immich_import'), method: :post, data: { confirm: 'Are you sure?', turbo_confirm: 'Are you sure?', turbo_method: :post }, class: 'rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium' %> <% else %> - Import Immich data + Import Immich data <% end %> <% if current_user.safe_settings.photoprism_url && current_user.safe_settings.photoprism_api_key %> <%= link_to 'Import Photoprism data', settings_background_jobs_path(job_name: 'start_photoprism_import'), method: :post, data: { confirm: 'Are you sure?', turbo_confirm: 'Are you sure?', turbo_method: :post }, class: 'rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium' %> <% else %> - Import Photoprism data + Import Photoprism data <% end %>