diff --git a/ui/component/fileActions/view.jsx b/ui/component/fileActions/view.jsx index 6b1f3a981..4e04d4756 100644 --- a/ui/component/fileActions/view.jsx +++ b/ui/component/fileActions/view.jsx @@ -162,38 +162,42 @@ function FileActions(props: Props) { onClick={() => openModal(MODALS.CONFIRM_FILE_REMOVE, { uri })} /> )} - - { - e.stopPropagation(); - e.preventDefault(); - }} - > - - - - {/* @if TARGET='web' */} - -
- - {__('Download')} -
-
- {/* @endif */} - {!claimIsMine && ( - push(`/$/${PAGES.REPORT_CONTENT}?claimId=${claimId}`)} - > -
- - {__('Report content')} -
-
- )} -
-
+ {(!isLivestreamClaim || !claimIsMine) && ( + + { + e.stopPropagation(); + e.preventDefault(); + }} + > + + + + {/* @if TARGET='web' */} + {!isLivestreamClaim && ( + +
+ + {__('Download')} +
+
+ )} + {/* @endif */} + {!claimIsMine && ( + push(`/$/${PAGES.REPORT_CONTENT}?claimId=${claimId}`)} + > +
+ + {__('Report content')} +
+
+ )} +
+
+ )} );