From 2ece20ead9f70fd57a0ca8355bf000334d8baf80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Ramos?= Date: Wed, 19 Jul 2017 11:31:16 +0100 Subject: [PATCH] fix(manifest-editor): allow ini as mode in proptypes --- packages/manifest-editor/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/manifest-editor/src/index.js b/packages/manifest-editor/src/index.js index b6c222e8..b8d88a88 100644 --- a/packages/manifest-editor/src/index.js +++ b/packages/manifest-editor/src/index.js @@ -96,7 +96,7 @@ ManifestEditor.defaultProps = { }; ManifestEditor.propTypes = { - mode: PropTypes.oneOf(['json', 'yaml']), + mode: PropTypes.oneOf(['json', 'yaml', 'ini']), value: PropTypes.string, onChange: PropTypes.func, onFocusChange: PropTypes.func,