From 97894dd1178f8192d1a8aaefa86964d6dbf2a04c Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Thu, 24 Oct 2024 10:10:44 +0100 Subject: [PATCH] Fix dbt Docs menu item href --- CHANGELOG.rst | 2 +- cosmos/__init__.py | 2 +- cosmos/plugin/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 69c2127e5..5264bacf2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ========= -1.7.1a2 (2024-10-24) +1.7.1a3 (2024-10-24) -------------------- Bug fixes diff --git a/cosmos/__init__.py b/cosmos/__init__.py index 5cfbcd450..84d522e81 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -6,7 +6,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.7.1a2" +__version__ = "1.7.1a3" from cosmos.airflow.dag import DbtDag diff --git a/cosmos/plugin/__init__.py b/cosmos/plugin/__init__.py index ede0e6f75..8ca93926c 100644 --- a/cosmos/plugin/__init__.py +++ b/cosmos/plugin/__init__.py @@ -276,6 +276,6 @@ class CosmosPlugin(AirflowPlugin): "name": "dbt Docs", "category": "Browse", "view": dbt_docs_view, - "href": conf.get("webserver", "base_url") + "/dbt_docs", + "href": conf.get("webserver", "base_url") + "/cosmos/dbt_docs", } appbuilder_views = [item]