Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2666 from ErikDakoda/FormComponentNewNamesFix2
Browse files Browse the repository at this point in the history
Form Component New Names Fix 2
  • Loading branch information
ErikDakoda committed Nov 29, 2020
2 parents 44a8fb6 + aa43bdd commit aea8a4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ export const styles = theme => ({


//noinspection JSUnusedGlobalSymbols
const MuiInput = createReactClass({
const FormInput = createReactClass({
element: null,

mixins: [ComponentMixin],

displayName: 'MuiInput',
displayName: 'FormInput',

propTypes: {
type: PropTypes.oneOf([
Expand Down Expand Up @@ -186,4 +186,4 @@ const MuiInput = createReactClass({
});


export default withStyles(styles)(MuiInput);
export default withStyles(styles)(FormInput);
2 changes: 1 addition & 1 deletion packages/vulcan-ui-material/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'vulcan:ui-material',
version: '1.16.0_1',
version: '1.16.0_2',
summary: 'Replacement for Vulcan (http://vulcanjs.org/) components using material-ui',
documentation: 'README.md',
});
Expand Down

0 comments on commit aea8a4d

Please sign in to comment.