Skip to content

Commit

Permalink
logging for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
melange396 authored Dec 4, 2024
1 parent 8df08db commit a22b65c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/deriveLinkDefaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ export function initialLoader(datasets: ILinkConfig['datasets']) {
return Promise.all(resolvedDataSets).then((data) => {
const cleaned = data.filter((d): d is DataSet => d != null);
cleaned.forEach((d) => {
console.log(d)
if (d.params && !Array.isArray(d.params) && d.params._custom_title) {
// use custom title string if provided in encoded parameters
d.title = d.params._custom_title;
Expand Down

0 comments on commit a22b65c

Please sign in to comment.