diff --git a/Makefile b/Makefile index b73c39a11..a3ac1c0c0 100644 --- a/Makefile +++ b/Makefile @@ -20,8 +20,8 @@ endif # Dashboard version # from https://github.com/emqx/emqx-dashboard5 -export EMQX_DASHBOARD_VERSION ?= v1.9.1-beta.1 -export EMQX_EE_DASHBOARD_VERSION ?= e1.7.1-beta.1 +export EMQX_DASHBOARD_VERSION ?= v1.9.1 +export EMQX_EE_DASHBOARD_VERSION ?= e1.7.1 -include default-profile.mk PROFILE ?= emqx diff --git a/scripts/ui-tests/dashboard_test.py b/scripts/ui-tests/dashboard_test.py index 85d40cec8..6005a9403 100644 --- a/scripts/ui-tests/dashboard_test.py +++ b/scripts/ui-tests/dashboard_test.py @@ -118,7 +118,7 @@ def test_docs_link(driver, login, dashboard_url): if prefix == 'e': docs_base_url = "https://docs.emqx.com/en/enterprise" else: - docs_base_url = "https://www.emqx.io/docs/en" + docs_base_url = "https://docs.emqx.com/en/emqx" docs_url = f"{docs_base_url}/{emqx_version}" xpath = f"//div[@id='app']//div[@class='nav-header']//a[@href[starts-with(.,'{docs_url}')]]"