Make sure imported data switch appears on Safari (#5872)
This commit is contained in:
parent
040fb349f7
commit
2ca24e77cc
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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={
|
||||
|
|
|
|||
Loading…
Reference in New Issue