fix phrasing on some overlay buttons

This commit is contained in:
Mateusz Konieczny 2022-12-06 09:32:08 +01:00
parent 4218350b71
commit 38c75ac1a3
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ const BoroughSwitcher: React.FC<BoroughSwitcherProps> = (props) => (
<form className={`borough-switcher ${props.currentDisplay}`} onSubmit={props.onSubmit}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
Switch borough overlay ({(props.currentDisplay === 'enabled')? 'Enabled' : 'Disabled'})
{(props.currentDisplay === 'enabled')? 'Switch off Borough overlay' : 'Switch on Borough overlay'}
</button>
</form>
);

View File

@ -11,7 +11,7 @@ const ConservationAreaSwitcherProps: React.FC<ConservationAreaSwitcherProps> = (
<form className={`conservation-switcher ${props.currentDisplay}`} onSubmit={props.onSubmit}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
Switch conservation area overlay ({(props.currentDisplay === 'enabled')? 'Enabled' : 'Disabled'})
{(props.currentDisplay === 'enabled')? 'Switch off Conservation Area overlay' : 'Switch on Conservation Area overlay'}
</button>
</form>
);

View File

@ -11,7 +11,7 @@ const HistoricDataSwitcherProps: React.FC<HistoricDataSwitcherProps> = (props) =
<form className={`historic-data-switcher ${props.currentDisplay}`} onSubmit={props.onSubmit}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
Switch to the OS 1890s historical map ({(props.currentDisplay === 'enabled')? 'Enabled' : 'Disabled'})
{(props.currentDisplay === 'enabled')? 'Switch off the OS 1890s Historical Map overlay' : 'Switch on the OS 1890s Historical Map overlay'}
</button>
</form>
);