From 3b987cc9647f6a351014e7f3992043ec1c57c38d Mon Sep 17 00:00:00 2001 From: Maria Petrova-El Sayed <m.petrova@fz-juelich.de> Date: Tue, 23 Nov 2021 15:37:47 +0100 Subject: [PATCH] Correct "data catalog" name in the menu link to match the rest --- plugins/eFlows_menu_link.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/eFlows_menu_link.py b/plugins/eFlows_menu_link.py index da5b660..937ad23 100644 --- a/plugins/eFlows_menu_link.py +++ b/plugins/eFlows_menu_link.py @@ -14,9 +14,9 @@ class AirflowEFlowsPlugin(AirflowPlugin): appbuilder_menu_items = [appbuilder_eFlows] class AirflowDataCatPlugin(AirflowPlugin): - name = "Data Catalogue" + name = "Data Catalog" operators = [] flask_blueprints = [] hooks = [] admin_views = [] - appbuilder_menu_items = [{"name": "Data Catalogue", "href": "https://datacatalog.fz-juelich.de/index.html"}] + appbuilder_menu_items = [{"name": "Data Catalog", "href": "https://datacatalog.fz-juelich.de/index.html"}] -- GitLab