Skip to content

Commit

Permalink
messin
Browse files Browse the repository at this point in the history
  • Loading branch information
snootched committed Aug 30, 2024
1 parent 8c02cc8 commit df3c07f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dist/cb-lcars.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ class CBLCARSDashboardStrategy {
//cblcarsLog('debug',jsObject);
const jsObject = readYamlFile(templates_url);

cblcarsLog('warning',"dumping dash strategy after readYamlFile function...");
cblcarsLog('debug',jsObject);

return {
title: 'CB-LCARS',
...jsObject, // Use the parsed YAML content here
Expand Down Expand Up @@ -193,6 +196,8 @@ class CBLCARSViewStrategyAirlock {
//cblcarsLog('info',`fetched and parsed yaml ${airlock_url}`);
//cblcarsLog('debug',jsObject);
const jsObject = readYamlFile(airlock_url);
cblcarsLog('warning',"dumping airlock strategy after readYamlFile function...");
cblcarsLog('debug',jsObject);

return {
...jsObject
Expand All @@ -213,6 +218,9 @@ class CBLCARSViewStrategyGallery {
//cblcarsLog('debug',jsObject);

const jsObject = readYamlFile(gallery_url);
cblcarsLog('warning',"dumping gallery strategy after readYamlFile function...");
cblcarsLog('debug',jsObject);

return {
...jsObject
};
Expand Down

0 comments on commit df3c07f

Please sign in to comment.