We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b7590f commit a3b5e79Copy full SHA for a3b5e79
javascript/operation_store.js
@@ -1,6 +1,8 @@
1
import Operations from './operations'
2
3
-window.CableReadyOperationsStore = Operations
+if (!window.CableReadyOperationsStore) {
4
+ window.CableReadyOperationsStore = Operations
5
+}
6
7
const add = newOperations => {
8
window.CableReadyOperationsStore = { ...window.CableReadyOperationsStore, ...newOperations }
0 commit comments