protected updateInnerView()

in src/plugin/fieldViews/DropdownFieldView.ts [71:79]


  protected updateInnerView(chosenOption: string): void {
    if (this.dropdownElement) {
      const domOptions = Array.from(this.dropdownElement.options);
      domOptions.forEach(
        (domOption) =>
          (domOption.selected = JSON.parse(domOption.value) === chosenOption)
      );
    }
  }