@lexho111/plainblog 0.2.3 → 0.2.4
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/Blog.js +1 -1
- package/package.json +1 -1
package/Blog.js
CHANGED
|
@@ -147,7 +147,7 @@ export default class Blog {
|
|
|
147
147
|
const dbTitle = await this.#databaseModel.getBlogTitle();
|
|
148
148
|
const dbArticles = await this.#databaseModel.findAll();
|
|
149
149
|
//console.log(`articles: ${JSON.stringify(dbarticles)}`)
|
|
150
|
-
this.reloadScriptsStylesOnGET =
|
|
150
|
+
this.reloadScriptsStylesOnGET = false;
|
|
151
151
|
if(this.reloadScriptsStylesOnGET) console.log("reload scripts and styles on GET-Request");
|
|
152
152
|
let title = "";
|
|
153
153
|
if (this.title.length > 0) title = this.title; // use blog title if set
|