From 113fe20fc2c9d950da7415e034774ac48fa1f0a6 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Fri, 24 Feb 2023 09:57:59 +0100 Subject: [PATCH] Fix help buttons for other languages than English and German (#24) --- CHANGELOG.md | 1 + src/utils/help.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7655324..696ed17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## v1.7.0 > v1.x.x - Fix internal player skin (volume bar) +- Fix help buttons for other languages than English and German ([#24](https://github.com/datarhei/restreamer-ui/issues/24)) ## v1.6.0 > v1.7.0 diff --git a/src/utils/help.js b/src/utils/help.js index ebd5593..5c5c8fc 100644 --- a/src/utils/help.js +++ b/src/utils/help.js @@ -209,7 +209,7 @@ function getTopicURL(topic, locale) { if (!(locale in topics[topic])) { // If locale doesn't exist, return default locale (en) URL // This requires that "en" exists for all topics. - return topic[topic].en; + return topics[topic].en; } return topics[topic][locale];