mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Remove share button on censored project banner.
Functionality needs reconsidering.
This commit is contained in:
parent
a2e46ea6ec
commit
2a464c8c21
1 changed files with 4 additions and 13 deletions
|
@ -132,19 +132,10 @@ const PreviewPresentation = ({
|
|||
message={<FormattedMessage id="project.deletedBanner" />}
|
||||
/>);
|
||||
} else if (visibilityInfo.censored) {
|
||||
if (visibilityInfo.reshareable) {
|
||||
banner = (<Banner
|
||||
actionMessage={<FormattedMessage id="project.share.shareButton" />}
|
||||
className="banner-danger"
|
||||
message={embedCensorMessage(visibilityInfo.message)}
|
||||
onAction={onShare}
|
||||
/>);
|
||||
} else {
|
||||
banner = (<Banner
|
||||
className="banner-danger"
|
||||
message={embedCensorMessage(visibilityInfo.message)}
|
||||
/>);
|
||||
}
|
||||
banner = (<Banner
|
||||
className="banner-danger"
|
||||
message={embedCensorMessage(visibilityInfo.message)}
|
||||
/>);
|
||||
} else if (justRemixed) {
|
||||
banner = (
|
||||
<Banner
|
||||
|
|
Loading…
Reference in a new issue