0
0
Fork 0

Fix feed regeneration bug

This commit is contained in:
Eugen Rochko 2017-04-02 15:46:31 +02:00
parent 750662d9e2
commit e809caa0e1
3 changed files with 10 additions and 6 deletions

View file

@ -72,7 +72,7 @@ const Compose = React.createClass({
<Motion defaultStyle={{ x: -100 }} style={{ x: spring(showSearch ? 0 : -100, { stiffness: 210, damping: 20 }) }}>
{({ x }) =>
<div className='drawer__inner darker' style={{ transform: `translateX(${x}%)` }}>
<div className='drawer__inner darker' style={{ transform: `translateX(${x}%)`, visibility: x === -100 ? 'hidden' : 'visible' }}>
<SearchResultsContainer />
</div>
}