diff --git a/core/i18n/resources/en/common.js b/core/i18n/resources/en/common.js index ac78247bc2..e2c6cdbb6d 100644 --- a/core/i18n/resources/en/common.js +++ b/core/i18n/resources/en/common.js @@ -102,6 +102,7 @@ Please check also the Spam/Junk mail folder.`, By confirming, all changes will be lost. Do you want to proceed?`, local: 'Local', + loading: 'Loading...', max: 'Maximum', med: 'Median', manage: 'Manage', @@ -817,6 +818,8 @@ Merge cannot be performed.`, }, selectedPeriod: 'Selected period', whisp: 'Whisp', + whispEarthMap: 'Whisp Earth Map', + whispCsv: 'Whisp CSV', }, samplingPolygonOptions: { diff --git a/webapp/components/buttons/ButtonMenu.js b/webapp/components/buttons/ButtonMenu.js index 68c63cfc87..71ae583826 100644 --- a/webapp/components/buttons/ButtonMenu.js +++ b/webapp/components/buttons/ButtonMenu.js @@ -9,7 +9,7 @@ import MenuItem from '@mui/material/MenuItem' import { Button } from './Button' export const ButtonMenu = (props) => { - const { className, closeMenuOnItemClick = true, menuClassName, items, ...otherProps } = props + const { className, closeMenuOnItemClick = true, menuClassName, items, variant = 'text', ...otherProps } = props const [anchorEl, setAnchorEl] = useState(null) @@ -33,10 +33,10 @@ export const ButtonMenu = (props) => { return ( <>