From 318a2ee5c84512819b9d66387f848d90fc06d34b Mon Sep 17 00:00:00 2001 From: Stephan Heunis Date: Wed, 17 Jan 2024 22:49:58 +0100 Subject: [PATCH] define default social links in javascript instead of making them null --- datalad_catalog/catalog/assets/app_globals.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/datalad_catalog/catalog/assets/app_globals.js b/datalad_catalog/catalog/assets/app_globals.js index a29da831..ea8e5cd2 100644 --- a/datalad_catalog/catalog/assets/app_globals.js +++ b/datalad_catalog/catalog/assets/app_globals.js @@ -15,10 +15,10 @@ const default_config = { logo_path: "artwork/catalog_logo.svg", social_links: { about: null, - documentation: null, - github: null, - mastodon: null, - x: null + documentation: "https://docs.datalad.org/projects/catalog/en/latest/", + github: "https://github.com/datalad/datalad-catalog", + mastodon: "https://fosstodon.org/@datalad", + x: "https://x.com/datalad" }, dataset_options: { include_metadata_export: true,