Re-use open popup when requesting a new session

This commit is contained in:
hensm
2018-12-13 21:01:42 +00:00
parent 414669df51
commit 95bbe777bc
3 changed files with 72 additions and 15 deletions

View File

@@ -1,10 +1,11 @@
"use strict";
// Global API state
const state = {
apiConfig: null
, receiverList: []
, sessionList: []
};
export default state;
"use strict";
// Global API state
const state = {
apiConfig: null
, receiverList: []
, sessionList: []
, sessionRequestInProgress: false
};
export default state;