Skip to content

Commit d20812f

Browse files
Allison Gruningerhartra344
Allison Gruninger
authored andcommitted
Hotfix for set model after token loads (#2562)
* Hotfix for set model after token loads * update v1 version number
1 parent 90adea7 commit d20812f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

client/src/app/aad-registration/aad-registration.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export class AadRegistrationComponent extends FunctionAppContextComponent implem
6767
this._portalService.getAdToken('graph')
6868
.subscribe(tokenData => {
6969
this.graphToken = tokenData.result.token;
70+
this.setModel();
7071
},
7172
err => {
7273
this.processError(err, 'Error retrieving graph yoken')

server/gulpfile.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -367,10 +367,10 @@ gulp.task('build-bindings', function (cb) {
367367
});
368368

369369
const templateVersionMap = {
370-
default: '1.0.3.10178',
371-
'1': '1.0.3.10178',
372-
beta: '2.0.0-beta-10180',
373-
'2': '2.0.0-beta-10180'
370+
default: '1.0.3.10182',
371+
'1': '1.0.3.10182',
372+
beta: '2.0.0-beta-10181',
373+
'2': '2.0.0-beta-10181'
374374
};
375375
/*****
376376
* Download and unzip nuget packages with templates

0 commit comments

Comments
 (0)