We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ccefca commit 26bc499Copy full SHA for 26bc499
action/dist/index.js
src/plugins/followup/index.mjs
@@ -3,7 +3,7 @@
3
//Check if plugin is enabled and requirements are met
4
if (!enabled)
5
return computed.plugins.followup = null
6
- if (("followup" in q)&&(!q.followup))
+ if (!q.followup)
7
8
console.debug(`metrics/compute/${login}/plugins > followup`)
9
computed.svg.height += 70
src/plugins/languages/index.mjs
return computed.plugins.languages = null
- if (("languages" in q)&&(!q.languages))
+ if (!q.languages)
console.debug(`metrics/compute/${login}/plugins > languages`)
computed.svg.height += 90
0 commit comments