From: Daniel Karbach <daniel.karbach@localhorst.tv> Date: Mon, 17 Jul 2023 14:33:39 +0000 (+0200) Subject: show map name in title/heading X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=2dd77d469225174b6b37509fce43b92f451412e7;p=alttp.git show map name in title/heading --- diff --git a/resources/js/components/pages/Map.js b/resources/js/components/pages/Map.js index 3cbd31f..8291ef2 100644 --- a/resources/js/components/pages/Map.js +++ b/resources/js/components/pages/Map.js @@ -20,13 +20,13 @@ const Map = () => { return <Container fluid> <Helmet> - <title>{t('map.heading')}</title> + <title>{t('map.heading')} - {t(`map.${activeMap}Long`)}</title> <meta name="description" content={t('map.description')} /> </Helmet> <CanonicalLinks base={`/map/${activeMap}`} /> <OpenSeadragon ref={container}> <div className="d-flex align-items-start justify-content-between"> - <h1>{t('map.heading')}</h1> + <h1>{t('map.heading')} - {t(`map.${activeMap}Long`)}</h1> <Buttons setUWOverlay={setUWOverlay} uwOverlay={uwOverlay} /> </div> <div ref={container} style={{ height: '80vh' }} />