goblin-desktop 4.0.1 → 4.0.2
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/widgets/hinter/widget.js
CHANGED
|
@@ -206,7 +206,7 @@ class Hinter extends Widget {
|
|
|
206
206
|
|
|
207
207
|
onNew() {
|
|
208
208
|
const model = this.getRouting().get('location.hash').substring(1);
|
|
209
|
-
const value = this.
|
|
209
|
+
const value = this.getBackendState(model);
|
|
210
210
|
this.do('create-new', {value});
|
|
211
211
|
}
|
|
212
212
|
|
package/widgets/search/widget.js
CHANGED
|
@@ -40,7 +40,7 @@ class HinterNewButton extends Widget {
|
|
|
40
40
|
|
|
41
41
|
onNew() {
|
|
42
42
|
const model = this.getRouting().get('location.hash').substring(1);
|
|
43
|
-
const value = this.
|
|
43
|
+
const value = this.getBackendState(model);
|
|
44
44
|
this.doFor(this.props.id, 'create-new', {
|
|
45
45
|
value,
|
|
46
46
|
});
|