Skip to content

Commit

Permalink
Hotfix for set model after token loads (#2562)
Browse files Browse the repository at this point in the history
* Hotfix for set model after token loads

* update v1 version number
  • Loading branch information
Allison Gruninger authored and hartra344 committed Apr 17, 2018
1 parent 90adea7 commit d20812f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export class AadRegistrationComponent extends FunctionAppContextComponent implem
this._portalService.getAdToken('graph')
.subscribe(tokenData => {
this.graphToken = tokenData.result.token;
this.setModel();
},
err => {
this.processError(err, 'Error retrieving graph yoken')
Expand Down
8 changes: 4 additions & 4 deletions server/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,10 +367,10 @@ gulp.task('build-bindings', function (cb) {
});

const templateVersionMap = {
default: '1.0.3.10178',
'1': '1.0.3.10178',
beta: '2.0.0-beta-10180',
'2': '2.0.0-beta-10180'
default: '1.0.3.10182',
'1': '1.0.3.10182',
beta: '2.0.0-beta-10181',
'2': '2.0.0-beta-10181'
};
/*****
* Download and unzip nuget packages with templates
Expand Down

0 comments on commit d20812f

Please sign in to comment.