public set defaultSelectedWordIndex()

in client/src/components/translation-selector/word-scroll-list.ts [107:115]


  public set defaultSelectedWordIndex(value: number) {
    if(value === this._defaultSelectedWordIndex) {
      return;
    }
    this._defaultSelectedWordIndex = value;
    if(this.translations && this._selectedWordIndex < 0) {
      this._selectedWordIndex = this._defaultSelectedWordIndex;
    }
  }