in src/app/activities-widget.js [113:128]
async initializeExistingWidget(dashboardApi) {
await filter.restore(this.props);
const youTrackService = await ActivitiesWidget.getDefaultYouTrackService(
dashboardApi, filter.youTrackId
);
if (youTrackService && youTrackService.id) {
filter.youTrackId = youTrackService.id;
filter.youTrackUrl = youTrackService.homeUrl;
filter.userFormats = await this.createUserDateFormats();
await filter.sync(this.props);
this.setState({isConfiguring: false});
await this.reload();
}
}