Make sure imported data switch appears on Safari (#5872)

This commit is contained in:
Artur Pata 2025-11-05 08:31:59 +02:00 committed by GitHub
parent 040fb349f7
commit 2ca24e77cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -45,6 +45,7 @@ All notable changes to this project will be documented in this file.
- Fixed unhandled tracker-related exceptions on link clicks within svgs
- Remove Subscription and Invoices menu from CE
- Fix email sending error "Mua.SMTPError" 503 Bad sequence of commands
- Make button to include / exclude imported data visible on Safari
## v3.0.0 - 2025-04-11

View File

@ -15,7 +15,7 @@ export default function WithImportedSwitch({
const { query } = useQueryContext()
const importsSwitchedOn = query.with_imported
const iconClass = classNames({
const iconClass = classNames('size-4', {
'dark:text-gray-300 text-gray-700': importsSwitchedOn,
'dark:text-gray-500 text-gray-400': !importsSwitchedOn
})
@ -23,7 +23,7 @@ export default function WithImportedSwitch({
return (
<Tooltip
info={<div className="font-normal truncate">{tooltipMessage}</div>}
className="w-4 h-4"
className="size-4"
>
<AppNavigationLink
search={