Skip to content

Commit

Permalink
πŸ’„ Share dialog: make filename bold in title (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericlinagora committed Apr 21, 2024
1 parent 51c1242 commit a5ee84e
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,15 @@ const AccessModalContent = (props: {

return (
<ModalContent
title={Languages.t(
props.isOnAdvancedScreen
? 'components.item_context_menu.manage_access_advanced_to'
: 'components.item_context_menu.manage_access_to') + ' ' + item?.name}
>
title={
<>
{Languages.t(props.isOnAdvancedScreen
? 'components.item_context_menu.manage_access_advanced_to'
: 'components.item_context_menu.manage_access_to') + ' '}
<strong>{item?.name}</strong>
</>
}
>
{!props.isOnAdvancedScreen ?
<>
<PublicLinkManager id={id} disabled={access !== 'manage'} />
Expand Down

0 comments on commit a5ee84e

Please sign in to comment.