Skip to content

Commit

Permalink
πŸ’„ front: fix dark mode text colour of public-link advanced settings (#50
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ericlinagora committed May 13, 2024
1 parent 9048ce7 commit 9fc0934
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const SwitchToAdvancedSettingsRow = (props: {
title={Languages.t('components.public-link-security')}
suffix={
<A
className={"pr-4 inline-block " + (props.disabled ? '!text-zinc-500' : '!text-zinc-800')}
className={"pr-4 inline-block " + (props.disabled ? '!text-zinc-500 dark:!text-zinc-500' : '!text-zinc-800 dark:!text-zinc-200')}
disabled={props.disabled}
noColor={props.disabled}
onClick={() => {
Expand Down

0 comments on commit 9fc0934

Please sign in to comment.