Alexander Klechshev

Results 11 comments of Alexander Klechshev

Bump. This is still an issue. @adamd9 @devangbhavsar89 As a workaround I'm using `storageentitiesindex` web property. It returns a JSON of all properties set for current web. Careful with this,...

Any progress on that? Still an issue and the workaround is not the best option.

Hey, if this still relevant to you or anyone else - make sure you have 1 instance of Quill in your `node_modules` and its version is `^2.0.0-dev.3`. In my case...

You have correct dependencies in package.json (I have the same setup). Remove package.lock and node_modules and reinstall everything.

Bumping, I've followed [instructions](https://github.com/andrewconnell/sp-dev-docs/blob/content-new/aadtokenprovider-popup/docs/spfx/use-aadtokenprovider.md) but its still redirecting. Debugging `AADHttpClient` I can see `popupEvent` is registered correctly, but it's never called, `onBeforeRedirect` event is called instead. Running `Get-SPOTenant` shows that...

The popup shows up, but nothing happens (error says `cannot read measage of undefined` in console). Also if you try get token again it says is `Token request previously failed.`

Here's my setup: ```ts // configure popup onInit() { return this.context.aadTokenProviderFactory.getTokenProvider() .then(configurableTokenProvider => { configurableTokenProvider.popupEvent.add(this, this.handlePopup); this._tokenProvider = configurableTokenProvider; }) .catch(e => console.error(e)); } handlePopup = (eventArgs: PopupEventArgs) => {...

@AJIXuMuK hey sorry to ping you so often, but is there anything you guys found out? Now I'm getting other error: ``` Uncaught (in promise) ClientAuthError: User cancelled the flow....

Still an issue. As a workaround you could use `themableSvg` property: ```tsx options: [ { key: AlignVariants.TopLeft, checked: selectedAlignment === AlignVariants.TopLeft, themableSvg: , text: strings.TopActions.TopLeft } ] ```

@Ashlesha-MSFT Here's the snippet: ```ts export default class HelloWorldWebPart extends BaseClientSideWebPart { public render(): void { console.log('!!! render !!!'); } protected async onInit(): Promise { console.log('!!! onInit start !!!'); await...