diff options
author | Clemens <cle1000.cb@gmail.com> | 2016-08-09 08:40:24 +0200 |
---|---|---|
committer | Clemens <cle1000.cb@gmail.com> | 2016-08-09 08:40:24 +0200 |
commit | adfdcc9391ed70202a1b4af65259a89634f36fa0 (patch) | |
tree | 69f83b6bbe937a0dfbda18ecd94a57435f32d665 /web/src/js/components/ContentView/ShowFullContentButton.jsx | |
parent | ab322f0be46a07759a7651e8c4975a61d2e067f1 (diff) | |
download | mitmproxy-adfdcc9391ed70202a1b4af65259a89634f36fa0.tar.gz mitmproxy-adfdcc9391ed70202a1b4af65259a89634f36fa0.tar.bz2 mitmproxy-adfdcc9391ed70202a1b4af65259a89634f36fa0.zip |
added hints from mhils
Diffstat (limited to 'web/src/js/components/ContentView/ShowFullContentButton.jsx')
-rw-r--r-- | web/src/js/components/ContentView/ShowFullContentButton.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/components/ContentView/ShowFullContentButton.jsx b/web/src/js/components/ContentView/ShowFullContentButton.jsx index 17e61be4..acb094a7 100644 --- a/web/src/js/components/ContentView/ShowFullContentButton.jsx +++ b/web/src/js/components/ContentView/ShowFullContentButton.jsx @@ -14,7 +14,7 @@ ShowFullContentButton.propTypes = { function ShowFullContentButton ( {setShowFullContent, showFullContent} ){ return ( - !showFullContent && <Button className="view-all-content-btn" isXs={true} onClick={() => setShowFullContent(true)} text="Show full content"/> + !showFullContent && <Button className="view-all-content-btn btn-xs" onClick={() => setShowFullContent(true)} text="Show full content"/> ) } |