From d938f531819afedd6343e299a74f4d0f67fdb594 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Fri, 27 Apr 2018 02:03:05 +0300 Subject: [PATCH] Handle excludedPropTypes option in withInfo --- addons/info/src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/info/src/index.js b/addons/info/src/index.js index b6003d36d12..b138f51b65f 100644 --- a/addons/info/src/index.js +++ b/addons/info/src/index.js @@ -78,6 +78,7 @@ function addInfo(storyFn, context, infoOptions) { maxPropArrayLength: options.maxPropArrayLength, maxPropsIntoLine: options.maxPropsIntoLine, maxPropStringLength: options.maxPropStringLength, + excludedPropTypes: options.excludedPropTypes, }; return {storyFn(context)}; }