kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
Hide action bar if status is under review
rodzic
5f83ba9324
commit
1390d155b8
|
@ -392,7 +392,7 @@ const Status: React.FC<IStatus> = (props) => {
|
|||
</Stack>
|
||||
</Stack>
|
||||
|
||||
{!hideActionBar && (
|
||||
{(!hideActionBar && !isUnderReview) && (
|
||||
<div className='pt-4'>
|
||||
<StatusActionBar status={actualStatus} withDismiss={withDismiss} />
|
||||
</div>
|
||||
|
|
|
@ -134,6 +134,7 @@ const Thread: React.FC<IThread> = (props) => {
|
|||
const me = useAppSelector(state => state.me);
|
||||
const status = useAppSelector(state => getStatus(state, { id: props.params.statusId }));
|
||||
const displayMedia = settings.get('displayMedia') as DisplayMedia;
|
||||
const isUnderReview = status?.visibility === 'self';
|
||||
|
||||
const { ancestorsIds, descendantsIds } = useAppSelector(state => {
|
||||
let ancestorsIds = ImmutableOrderedSet<string>();
|
||||
|
@ -475,6 +476,8 @@ const Thread: React.FC<IThread> = (props) => {
|
|||
onOpenCompareHistoryModal={handleOpenCompareHistoryModal}
|
||||
/>
|
||||
|
||||
{!isUnderReview ? (
|
||||
<>
|
||||
<hr className='mb-2 border-t-2 dark:border-primary-800' />
|
||||
|
||||
<StatusActionBar
|
||||
|
@ -483,6 +486,8 @@ const Thread: React.FC<IThread> = (props) => {
|
|||
space='expand'
|
||||
withLabels
|
||||
/>
|
||||
</>
|
||||
) : null}
|
||||
</div>
|
||||
</HotKeys>
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue