constructor()

in src/app/edit-form-user-selector.js [30:40]


  constructor(props) {
    super(props);

    const selected = toSelectOption(filter.author);
    const options = (selected ? [selected] : []);
    this.state = {
      availableAuthors: options,
      selectedAuthor: selected,
      request: null
    };
  }