frappe-ui 0.1.31 → 0.1.33
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/package.json
CHANGED
package/src/resources/plugin.js
CHANGED
|
@@ -23,11 +23,9 @@ let createMixin = (mixinOptions) => ({
|
|
|
23
23
|
console.warn('Failed to get resource options\n\n', error)
|
|
24
24
|
out = null
|
|
25
25
|
}
|
|
26
|
-
return
|
|
26
|
+
return out
|
|
27
27
|
},
|
|
28
|
-
(
|
|
29
|
-
let options = _options ? JSON.parse(_options) : null
|
|
30
|
-
let oldOptions = _oldOptions ? JSON.parse(_oldOptions) : null
|
|
28
|
+
(options, oldOptions) => {
|
|
31
29
|
if (!options) {
|
|
32
30
|
return
|
|
33
31
|
}
|