@etsoo/react 1.3.82 → 1.3.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/app/ReactApp.js +2 -1
- package/package.json +1 -1
- package/src/app/ReactApp.ts +2 -1
package/lib/app/ReactApp.js
CHANGED
|
@@ -68,7 +68,8 @@ export class ReactApp extends CoreApp {
|
|
|
68
68
|
], (field, data, index) => {
|
|
69
69
|
if (index > 0 &&
|
|
70
70
|
(field === CoreApp.headerTokenField ||
|
|
71
|
-
field === CoreApp.devicePassphraseField
|
|
71
|
+
field === CoreApp.devicePassphraseField ||
|
|
72
|
+
CoreApp.serversideDeviceIdField)) {
|
|
72
73
|
// Clear passphrase to regenerate the device id
|
|
73
74
|
// Clear token
|
|
74
75
|
return null;
|
package/package.json
CHANGED
package/src/app/ReactApp.ts
CHANGED
|
@@ -210,7 +210,8 @@ export class ReactApp<
|
|
|
210
210
|
if (
|
|
211
211
|
index > 0 &&
|
|
212
212
|
(field === CoreApp.headerTokenField ||
|
|
213
|
-
field === CoreApp.devicePassphraseField
|
|
213
|
+
field === CoreApp.devicePassphraseField ||
|
|
214
|
+
CoreApp.serversideDeviceIdField)
|
|
214
215
|
) {
|
|
215
216
|
// Clear passphrase to regenerate the device id
|
|
216
217
|
// Clear token
|