renamed file

This commit is contained in:
pablohpsilva 2017-04-03 23:10:19 -03:00
parent a7f4c9d5e9
commit b293f61080
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@
</template>
<script>
import autocompleteCommon from '../../core/utils/autocomplete-commons';
import autocompleteCommon from '../../core/utils/autocomplete-common';
import common from './common';
import getClosestVueParent from '../../core/utils/getClosestVueParent';

View file

@ -44,9 +44,9 @@ export default {
verifyProps() {
if (!this.parentContainer) {
return this.throwErrorDestroy('You should wrap the md-input in a md-input-container');
} else if (!this.listIsEmpty && this.filterList) {
} else if (this.listIsEmpty && this.filterList) {
return this.throwErrorDestroy('You should use a `filterList` function prop with the `list` prop');
} else if (!this.fetch) {
} else if (!this.fetch && this.listIsEmpty) {
return this.throwErrorDestroy('You should use a `fetch` function prop');
}
},