mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -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" />}
|
message={<FormattedMessage id="project.deletedBanner" />}
|
||||||
/>);
|
/>);
|
||||||
} else if (visibilityInfo.censored) {
|
} else if (visibilityInfo.censored) {
|
||||||
if (visibilityInfo.reshareable) {
|
banner = (<Banner
|
||||||
banner = (<Banner
|
className="banner-danger"
|
||||||
actionMessage={<FormattedMessage id="project.share.shareButton" />}
|
message={embedCensorMessage(visibilityInfo.message)}
|
||||||
className="banner-danger"
|
/>);
|
||||||
message={embedCensorMessage(visibilityInfo.message)}
|
|
||||||
onAction={onShare}
|
|
||||||
/>);
|
|
||||||
} else {
|
|
||||||
banner = (<Banner
|
|
||||||
className="banner-danger"
|
|
||||||
message={embedCensorMessage(visibilityInfo.message)}
|
|
||||||
/>);
|
|
||||||
}
|
|
||||||
} else if (justRemixed) {
|
} else if (justRemixed) {
|
||||||
banner = (
|
banner = (
|
||||||
<Banner
|
<Banner
|
||||||
|
|
Loading…
Reference in a new issue