aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/recipe.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2023-02-08 21:13:21 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2023-02-08 21:13:21 +0530
commit2e043a983f4fc1abc6ba9e8b6816b696c95996f4 (patch)
tree5bfcf00b4881ef901b60fdf7bc4ef2012750160c /src/webview/recipe.ts
parentMerge branch 'develop' into release: Bump version to '6.2.4' (diff)
parent6.2.5-nightly.3 [skip ci] (diff)
downloadferdium-app-2e043a983f4fc1abc6ba9e8b6816b696c95996f4.tar.gz
ferdium-app-2e043a983f4fc1abc6ba9e8b6816b696c95996f4.tar.zst
ferdium-app-2e043a983f4fc1abc6ba9e8b6816b696c95996f4.zip
Merge branch 'develop' into release and bump version in package.jsonv6.2.5-beta.1
Diffstat (limited to 'src/webview/recipe.ts')
-rw-r--r--src/webview/recipe.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webview/recipe.ts b/src/webview/recipe.ts
index ed45192d3..36b8b7c98 100644
--- a/src/webview/recipe.ts
+++ b/src/webview/recipe.ts
@@ -265,6 +265,7 @@ class RecipeController {
265 if (pathExistsSync(userCss)) { 265 if (pathExistsSync(userCss)) {
266 const data = readFileSync(userCss); 266 const data = readFileSync(userCss);
267 styles.innerHTML += data.toString(); 267 styles.innerHTML += data.toString();
268 debug('Loaded user.css from: ', userCss);
268 } 269 }
269 document.querySelector('head')?.append(styles); 270 document.querySelector('head')?.append(styles);
270 271