Call buildCssPath with empty string for default template (#3594)
* Call buildCssPath with empty string for default template Call buildCssPath with an empty string instead of null for the default template * Remove unused options argument This means we can also remove the empty strings for the themeModifier arg, instead passing undefined, to get the default arg GitOrigin-RevId: 78cd14ae7ab9d58f66c27cb54477d24b4bd494c7
This commit is contained in:
@@ -4,7 +4,7 @@ html.full-height(itemscope, itemtype='http://schema.org/Product')
|
||||
title Something went wrong
|
||||
link(rel="icon", href="/favicon.ico")
|
||||
if buildCssPath
|
||||
link(rel="stylesheet", href=buildCssPath(null, { hashedPath: true }))
|
||||
link(rel="stylesheet", href=buildCssPath())
|
||||
|
||||
body.full-height
|
||||
.content.content-alt.full-height
|
||||
|
||||
@@ -4,7 +4,7 @@ html.full-height(itemscope, itemtype='http://schema.org/Product')
|
||||
title Something went wrong
|
||||
link(rel="icon", href="/favicon.ico")
|
||||
if buildCssPath
|
||||
link(rel="stylesheet", href=buildCssPath(null, { hashedPath: true }))
|
||||
link(rel="stylesheet", href=buildCssPath())
|
||||
|
||||
body.full-height
|
||||
.content.content-alt.full-height
|
||||
|
||||
Reference in New Issue
Block a user