release ready

This commit is contained in:
Mario Pesch 2022-10-21 10:55:39 +02:00
parent 9cb978b071
commit 48be116f5b
3 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ class Cookies extends Component {
return ( return (
<CookieConsent <CookieConsent
location="bottom" location="bottom"
buttonText="Okay!!" buttonText="Okay!"
cookieName="cookieConsent" cookieName="cookieConsent"
style={{ background: "#2B373B" }} style={{ background: "#2B373B" }}
buttonStyle={{ background: "white", color: "#4EAF47", fontSize: "1rem" }} buttonStyle={{ background: "white", color: "#4EAF47", fontSize: "1rem" }}

View File

@ -11,7 +11,7 @@ import WorkspaceFunc from "./Workspace/WorkspaceFunc";
import BlocklyWindow from "./Blockly/BlocklyWindow"; import BlocklyWindow from "./Blockly/BlocklyWindow";
import CodeViewer from "./CodeViewer"; import CodeViewer from "./CodeViewer";
import TrashcanButtons from "./Workspace/TrashcanButtons"; import TrashcanButtons from "./Workspace/TrashcanButtons";
import HintTutorialExists from "./Tutorial/HintTutorialExists"; // import HintTutorialExists from "./Tutorial/HintTutorialExists";
import DeviceSelection from "./DeviceSelection"; import DeviceSelection from "./DeviceSelection";
import Grid from "@material-ui/core/Grid"; import Grid from "@material-ui/core/Grid";
@ -188,7 +188,7 @@ class Home extends Component {
) : null} ) : null}
</Grid> </Grid>
<DeviceSelection /> <DeviceSelection />
<HintTutorialExists /> {/* <HintTutorialExists /> */}
{this.props.platform ? ( {this.props.platform ? (
<Dialog <Dialog
style={{ zIndex: 9999999 }} style={{ zIndex: 9999999 }}

View File

@ -266,7 +266,7 @@ class Navbar extends Component {
<ListItemIcon> <ListItemIcon>
<FontAwesomeIcon icon={item.icon} /> <FontAwesomeIcon icon={item.icon} />
</ListItemIcon> </ListItemIcon>
{item.text === "CodeEditor" ? ( {item.text === "Code Editor" ? (
<Badge badgeContent={"Experimental"} color="primary"> <Badge badgeContent={"Experimental"} color="primary">
<ListItemText primary={item.text} /> <ListItemText primary={item.text} />
</Badge> </Badge>