@simple-reporting/base 1.0.35 → 1.0.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dev/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  "postinstall": "srl prepare"
25
25
  },
26
26
  "dependencies": {
27
- "@simple-reporting/base": "^1.0.35",
27
+ "@simple-reporting/base": "^1.0.36",
28
28
  "axios": "^1.12.2",
29
29
  "chalk": "^5.6.2",
30
30
  "exceljs": "^4.4.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simple-reporting/base",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "Manage srl templates, build and publish",
5
5
  "repository": {
6
6
  "url": "https://github.com/mmssolutionsio/simple-reporting-library"
@@ -44,7 +44,7 @@ const article = useArticle();
44
44
 
45
45
  if (article.value) {
46
46
  const file = `./html/${locale}/${article.value.name}.html`;
47
- const publicationTitle = config.value.settings?.publicationName?[locale] : null;
47
+ const publicationTitle = config.value.settings?.publicationName[locale]??null;
48
48
  try {
49
49
  const req = await fetch(file);
50
50
  let text = await req.text();