Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
Expand Down
2 changes: 1 addition & 1 deletion src/components/About/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function About({ open, setOpen, handleClick }) {

return (
<>
<MenuItem onClick={handleClick}>
<MenuItem onClick={handleClick} divider={true}>
<ListItemIcon>
<InfoRoundedIcon fontSize="small" />
</ListItemIcon>
Expand Down
38 changes: 37 additions & 1 deletion src/components/SubMenuBar/SubMenuBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
Box,
Button,
IconButton,
Link,
ListItemIcon,
Menu,
MenuItem,
Expand Down Expand Up @@ -37,6 +38,8 @@ import { useModalStyles, useStyles } from './style';

import LogoOBT from './logo_obt.png';
import LogoTT from './logo_tt.png';
import Level from './level.svg';
import Hiscoder from './hiscoder.svg';
import { useSnackbar } from 'notistack';

function SubMenuBar() {
Expand Down Expand Up @@ -211,12 +214,45 @@ function SubMenuBar() {
</ListItemIcon>
{t('Get_shared_links')}
</MenuItem>

<About
open={openAbout}
setOpen={setOpenAbout}
handleClick={handleClickOpenAbout}
/>
<MenuItem
divider={true}
component={Link}
href={'https://level.bible'}
target="_blank"
>
<ListItemIcon>
<Box
component="img"
sx={{
height: 16,
}}
alt="Level"
src={Level}
/>
</ListItemIcon>
LEVEL.bible
</MenuItem>
<MenuItem component={Link} href={'https://hiscoder.com'} target="_blank">
<ListItemIcon>
<Box
component="img"
sx={{
height: 12,
}}
alt="Hiscoder"
src={Hiscoder}
/>
</ListItemIcon>
<div>
<span>Powered by </span>
<span style={{ color: '#358d62' }}>HisCoder.com</span>
</div>
</MenuItem>
</Menu>
<SearchResources
anchorEl={anchorAddMaterial}
Expand Down
4 changes: 4 additions & 0 deletions src/components/SubMenuBar/hiscoder.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/components/SubMenuBar/level.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading