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:
Alf Eaton
2021-01-28 03:04:52 +00:00
committed by Copybot
parent 4955231abf
commit 0d349aa4b1
3 changed files with 4 additions and 4 deletions
@@ -340,12 +340,12 @@ module.exports = function(webRouter, privateApiRouter, publicApiRouter) {
{
name: 'Default',
val: '',
path: res.locals.buildCssPath(null, { hashedPath: true })
path: res.locals.buildCssPath()
},
{
name: 'Light',
val: 'light-',
path: res.locals.buildCssPath('light-', { hashedPath: true })
path: res.locals.buildCssPath('light-')
}
]
}