constructor()

in src/app/work-items-edit-form.js [75:86]


  constructor(props) {
    super(props);

    const selectedAuthors = toUsers(filter.authors).concat(toGroups(filter.authorGroups));

    this.state = {
      youTracks: [],
      authors: selectedAuthors.map(toSelectItem),
      request: null
    };
    this.underlineAndSuggestDebouncer = new DebounceDecorator();
  }