diff options
author | slice <ryaneft@gmail.com> | 2019-05-29 23:38:09 -0700 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-05-30 09:04:00 +0200 |
commit | 22130a09471129939a655c306e468d271930d085 (patch) | |
tree | 8df2a765550b3404fdd048458acdfea0b6703985 /app | |
parent | e04724296b06bc08fa2ced9616dc7d0a5c89e3ca (diff) |
Fix incorrect PropType in Glitch AutosuggestInput
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/flavours/glitch/components/autosuggest_input.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/components/autosuggest_input.js b/app/javascript/flavours/glitch/components/autosuggest_input.js index ca0dcb64f..5fc952d8e 100644 --- a/app/javascript/flavours/glitch/components/autosuggest_input.js +++ b/app/javascript/flavours/glitch/components/autosuggest_input.js @@ -49,7 +49,7 @@ export default class AutosuggestInput extends ImmutablePureComponent { autoFocus: PropTypes.bool, className: PropTypes.string, id: PropTypes.string, - searchTokens: PropTypes.list, + searchTokens: PropTypes.arrayOf(PropTypes.string), maxLength: PropTypes.number, }; |