Fix bad handling of plugin_pagespeed_detailed
This commit is contained in:
4
action/dist/index.js
vendored
4
action/dist/index.js
vendored
File diff suppressed because one or more lines are too long
@@ -95,8 +95,7 @@
|
||||
if (plugins.pagespeed.enabled) {
|
||||
plugins.pagespeed.token = core.getInput("plugin_pagespeed_token")
|
||||
console.log(`Pagespeed token | ${plugins.pagespeed.token ? "provided" : "missing"}`)
|
||||
for (const option of ["detailed"])
|
||||
q[`pagespeed.${option}`] = core.getInput(`plugin_pagespeed_${option}`) || null
|
||||
q[`pagespeed.${option}`] = bool(core.getInput(`plugin_pagespeed_${option}`))
|
||||
console.log(`Pagespeed detailed | ${q["pagespeed.detailed"]}`)
|
||||
}
|
||||
//Music
|
||||
|
||||
@@ -211,7 +211,7 @@
|
||||
margin-top: 8px;
|
||||
}
|
||||
.audit.text {
|
||||
min-width: 36px;
|
||||
min-width: 42px;
|
||||
}
|
||||
.audit svg {
|
||||
margin: 0;
|
||||
|
||||
Reference in New Issue
Block a user