@rededor/cura 1.8.0 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5652,14 +5652,14 @@ const CuraSelect = class {
5652
5652
  * Initializes the options for the select component.
5653
5653
  */
5654
5654
  componentWillLoad() {
5655
- // this.initializeOptions();
5655
+ this.initializeOptions();
5656
5656
  }
5657
5657
  /**
5658
5658
  * Lifecycle method called after the component is rendered.
5659
5659
  * Initializes select-related functionality.
5660
5660
  */
5661
5661
  componentDidLoad() {
5662
- this.initializeOptions();
5662
+ // this.initializeOptions();
5663
5663
  this.setupMutationObserver();
5664
5664
  this.addOutsideClickListener();
5665
5665
  }