in src/dialog/dialog.tsx [43:53]
public async componentDidMount(): Promise<void> {
const config: IActionContext = VSS.getConfiguration();
this.queryName = config.query.name;
const dialogHelper = new DialogHelper(config);
const oDataUrl = await dialogHelper.getODataUrl();
this.setState({
notes: NotesService.instance.notes,
oDataString: oDataUrl,
loading: false,
});
}