Tony Wieser (previously Microsoft Research)
Tony Wieser (previously Microsoft Research)
I'm creating my grid like this: ```typescript private render() { const Grid = makeResponsive(measureItems(SpringGrid), { maxWidth: 1024, minPadding: 50, defaultColumns: 2 }); let children = this.props.items.map(i =>); return {children} ;...
Assuming your app is already using Fabric icons and importing intializeIcons from here: office-ui-fabric-react/lib/Icons If you do, it generates a warning about initializingIcons twice I believe adaptivecards-fabric does this because...
Line 91:41: Unexpected template string expression no-template-curly-in-string I know I can turn it off with a local override, just raising it here for visibility.
Currently, I have a structure that has optional fields defined. If the structure does not have the field, the template library currently outputs the name of the field. I can...
In ortc-adapter.js setRemoteDescription, there's a line that says return void onFailure(invalidSignalingState(this.signalingState)); Should it be onFailure(invalidSignalingState(this.signalingState)); return; instead?