react-select-plus
Advanced tools
Comparing version 1.0.0-rc.3.patch11 to 1.0.0-rc.3.patch12
@@ -100,3 +100,3 @@ 'use strict'; | ||
var propertiesToSync = ['options']; | ||
var propertiesToSync = ['isLoading', 'options']; | ||
propertiesToSync.forEach(function (prop) { | ||
@@ -103,0 +103,0 @@ if (_this.props[prop] !== nextProps[prop]) { |
{ | ||
"name": "react-select-plus", | ||
"version": "1.0.0-rc.3.patch11", | ||
"version": "1.0.0-rc.3.patch12", | ||
"description": "A fork of react-select with support for option groups", | ||
@@ -5,0 +5,0 @@ "main": "lib/Select.js", |
@@ -71,3 +71,3 @@ import React, { Component, PropTypes } from 'react'; | ||
componentWillUpdate (nextProps, nextState) { | ||
const propertiesToSync = ['options']; | ||
const propertiesToSync = ['isLoading', 'options']; | ||
propertiesToSync.forEach((prop) => { | ||
@@ -74,0 +74,0 @@ if (this.props[prop] !== nextProps[prop]) { |
Sorry, the diff of this file is too big to display
841033