@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
package/package.json
CHANGED
|
@@ -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
|
|
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();
|