change labels of button for overlays

fixes #1038
This commit is contained in:
Mateusz Konieczny 2023-01-13 13:52:41 +01:00
parent 93295624a5
commit f397bf2065
8 changed files with 8 additions and 8 deletions

View File

@ -9,7 +9,7 @@ export const BoroughSwitcher: React.FC<{}> = () => {
<form className={`borough-switcher map-button ${darkLightTheme}`} onSubmit={boroughSwitch}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
{(borough === 'enabled')? 'Switch off Borough Boundaries' : 'Switch on Borough Boundaries'}
{(borough === 'enabled')? 'Borough Boundaries on' : 'Borough Boundaries off'}
</button>
</form>
);

View File

@ -9,7 +9,7 @@ export const ConservationAreaSwitcher: React.FC<{}> = (props) => {
<form className={`conservation-switcher map-button ${darkLightTheme}`} onSubmit={conservationSwitch}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
{(conservation === 'enabled')? 'Switch off Conservation Areas' : 'Switch on Conservation Areas'}
{(conservation === 'enabled')? 'Conservation Areas on' : 'Conservation Areas off'}
</button>
</form>
);

View File

@ -9,7 +9,7 @@ export const CreativeSwitcher: React.FC<{}> = () => {
<form className={`creative-switcher map-button ${darkLightTheme}`} onSubmit={creativeSwitch}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
{(creative === 'enabled')? 'Switch off Creative Enterprise Zones' : 'Switch on Creative Enterprise Zones'}
{(creative === 'enabled')? 'Enterprise Zones on' : 'Creative Enterprise Zones off'}
</button>
</form>
);

View File

@ -9,7 +9,7 @@ export const FloodSwitcher: React.FC<{}> = () => {
<form className={`flood-switcher map-button ${darkLightTheme}`} onSubmit={floodSwitch}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
{(flood === 'enabled')? 'Switch off Flood Zones' : 'Switch on Flood Zones'}
{(flood === 'enabled')? 'Flood Zones on' : 'Flood Zones of'}
</button>
</form>
);

View File

@ -9,7 +9,7 @@ export const HistoricDataSwitcher: React.FC<{}> = (props) => {
<form className={`historic-data-switcher map-button ${darkLightTheme}`} onSubmit={historicDataSwitch}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
{(historicData === 'enabled')? 'Switch off the OS 1890s Historical Map' : 'Switch on the OS 1890s Historical Map'}
{(historicData === 'enabled')? 'The OS 1890s Historical Map on' : 'The OS 1890s Historical Map off'}
</button>
</form>
);

View File

@ -9,7 +9,7 @@ export const HousingSwitcher: React.FC<{}> = () => {
<form className={`housing-switcher map-button ${darkLightTheme}`} onSubmit={housingSwitch}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
{(housing === 'enabled')? 'Switch off Housing Zones' : 'Switch on Housing Zones'}
{(housing === 'enabled')? 'Housing Zones on' : 'Housing Zones off'}
</button>
</form>
);

View File

@ -9,7 +9,7 @@ export const ParcelSwitcher: React.FC<{}> = () => {
<form className={`parcel-switcher map-button ${darkLightTheme}`} onSubmit={parcelSwitch}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
{(parcel === 'enabled')? 'Switch off Parcel (sample) overlay' : 'Switch on Parcel (sample) overlay'}
{(parcel === 'enabled')? 'Parcel overlay (sample) on' : 'Parcel overlay (sample) off'}
</button>
</form>
);

View File

@ -9,7 +9,7 @@ export const VistaSwitcher: React.FC<{}> = () => {
<form className={`vista-switcher map-button ${darkLightTheme}`} onSubmit={vistaSwitch}>
<button className="btn btn-outline btn-outline-dark"
type="submit">
{(vista === 'enabled')? 'Switch off Protected Vistas' : 'Switch on Protected Vistas'}
{(vista === 'enabled')? 'Protected Vistas on' : 'Protected Vistas off'}
</button>
</form>
);