💄 Share dialog: make filename bold in title (#50)
This commit is contained in:
committed by
ericlinagora
parent
78f98fabe8
commit
668fbcadf1
@@ -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'} />
|
||||
|
||||
Reference in New Issue
Block a user