Skip to content

Commit 9385536

Browse files
Trying to solve the deployment issue
1 parent bb26acb commit 9385536

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

_11ty/filters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export default {
232232
return getContentTypeByPath( path );
233233
},
234234
path_in_scope: ( path, scope ) => {
235-
return path.indexOf( scope ) > -1;
235+
return scope ? path.indexOf( scope ) > -1 : false;
236236
},
237237

238238
getCountsByType: posts => {

src/posts/2025-07-10-learning-web-design-6th-edition-is-out.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ hero:
99
src: /i/posts/2025-07-10/lwd-6e.jpg
1010
credit: "Aaron Gustafson"
1111
alt: "Perspective shot of the physical book"
12-
url:
1312
offset: "0"
1413
---
1514

0 commit comments

Comments
 (0)