Skip to content

Commit

Permalink
[core] Fix NumericInput documentation of initial state value (#3484)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibk6 authored and adidahiya committed Apr 17, 2019
1 parent 7675a81 commit 0f391fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/forms/numeric-input.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ import * as SomeLibrary from "some-library";

export class NumericInputExample extends React.Component<{}, { value?: number |
string }> {
public state = { value: null };
public state = { value: NumericInput.VALUE_EMPTY };

public render() {
return (
Expand Down

1 comment on commit 0f391fd

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[core] Fix NumericInput documentation of initial state value (#3484)

Previews: documentation | landing | table

Please sign in to comment.