Reamer commented on PR #4784:
URL: https://github.com/apache/zeppelin/pull/4784#issuecomment-2275075856

   > I don't have much experience with npm.
   
   My knowledge is also not really good.
   
   I have modified the package.json as follows.
   
   ```
   diff --git a/zeppelin-web/package.json b/zeppelin-web/package.json
   index c0044146e..d3de12d17 100644
   --- a/zeppelin-web/package.json
   +++ b/zeppelin-web/package.json
   @@ -40,7 +40,7 @@
        "angular-sanitize": "1.5.7",
        "angular-touch": "1.5.7",
        "angular-ui-ace": "0.2.3",
   -    "angular-websocket": "1.1.0",
   +    "angular-websocket": "1.0.13",
        "angular-xeditable": "0.1.12",
        "bootstrap": "~3.4.1",
        "bootstrap3-dialog": "~1.35.4",
   ```
   
   `~1.0.13` means `>=1.0.13 <1.1.0-0`, so basically version "1.0.14" can be 
used. Version `1.0.14` looks also good to me. 
https://github.com/PatrickJS/angular-websocket/compare/v1.0.13...v1.0.14
   `^1.0.13` means `>=1.0.13 < 2.0.0-0`, so basically version "1.1.0" can be 
used, which has the bug.
   
   To generate an updated package-lock.json use `npm install` inside 
`zeppelin-web` module.
   
   It is up to you whether you want to use "~" or enter the exact version.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to