diff --git a/platypush/backend/http/webapp/src/components/panels/Extensions/Install.vue b/platypush/backend/http/webapp/src/components/panels/Extensions/Install.vue
index 1054c7fa8..d12cefc0d 100644
--- a/platypush/backend/http/webapp/src/components/panels/Extensions/Install.vue
+++ b/platypush/backend/http/webapp/src/components/panels/Extensions/Install.vue
@@ -86,15 +86,15 @@ export default {
 
     highlightedInstallCmd() {
       return (
-        this.installCmd ?
         hljs.highlight(
+          this.installCmd ?
           this.extension.deps.install_cmd
           .map((cmd) => `$ ${cmd}`)
           .join('\n')
-          .trim()
-        ).value :
-        '# No extra installation steps required',
-        {language: 'bash'}
+          .trim() :
+          '# No extra installation steps required',
+          {language: 'bash'}
+        ).value
       )
     },
   },