Merge pull request #15 from wailsapp/Port-Build

Port build
This commit is contained in:
Lea Anthony
2019-01-11 07:01:18 +11:00
committed by GitHub
2 changed files with 2 additions and 3 deletions

View File

@@ -136,8 +136,8 @@ func (b *boundMethod) call(data string) ([]reflect.Value, error) {
}
args[index] = value
}
b.log.Infof("Unmarshalled Args: %+v\n", jsArgs)
b.log.Infof("Converted Args: %+v\n", args)
b.log.Debugf("Unmarshalled Args: %+v\n", jsArgs)
b.log.Debugf("Converted Args: %+v\n", args)
results := b.method.Call(args)
b.log.Debugf("results = %+v", results)

View File

@@ -19,7 +19,6 @@ export default {
getNewQuote: function() {
var self = this;
wails.$.main.QuotesCollection.GetQuote().then(result => {
console.log(result);
self.quote = result;
});
}