Browse Source

Add missing '='

fix/add-mpr-ui-id-param
Mikhail Shabarov 2 years ago
parent
commit
1108d59a8b
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      server/src/main/resources/VAADIN/vaadinBootstrap.js

+ 1
- 1
server/src/main/resources/VAADIN/vaadinBootstrap.js View File

@@ -368,7 +368,7 @@
// This parameter is used in multiplatform-runtime as a key for
// storing the MPR UI content in the session
if (window.mprUiId) {
params += '&v-mui' + encodeURIComponent(window.mprUiId);
params += '&v-mui=' + encodeURIComponent(window.mprUiId);
}

// Detect touch device support

Loading…
Cancel
Save