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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goblin-desktop",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "description": "Goblin Desktop",
5
5
  "main": "./builders/builders.js",
6
6
  "scripts": {
@@ -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.getModelValue(model, true);
209
+ const value = this.getBackendState(model);
210
210
  this.do('create-new', {value});
211
211
  }
212
212
 
@@ -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.getModelValue(model, true);
43
+ const value = this.getBackendState(model);
44
44
  this.doFor(this.props.id, 'create-new', {
45
45
  value,
46
46
  });