-
-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you want to write it to the DOM, pass a string instead: in="true" ... #43
Comments
Hi @brendaniel, Thank you for your valuable report 👍 If possible, it would be extremely helpful if you could provide reproducible minimal code! |
@tsuyoshiwada |
|
Solved the Problem by removing this block attribute from Link Tag |
I'm having the same issue. Anyone else found a solution? |
Also getting the same error in the console and all import React from 'react';
import StackGrid, { transitions, easings } from 'react-stack-grid';
class GridLayout extends React.Component {
render(): JSX.Element {
const transition = transitions.scaleDown;
return (
<StackGrid
monitorImagesLoaded={true}
columnWidth={300}
duration={600}
gutterWidth={15}
gutterHeight={15}
easing={easings.cubicOut}
appearDelay={60}
appear={transition.appear}
appeared={transition.appeared}
enter={transition.enter}
entered={transition.entered}
leaved={transition.leaved}
>
<div key="key1"><h1>Item 1</h1></div>
<div key="key2"><h1>Item 2</h1></div>
<div key="key3"><h1>Item 3</h1></div>
</StackGrid>
);
}
}
export default GridLayout; |
class StatementRow extends Component {
<StatementWrapper color={withDraw ? 1 : 0} background={background}> //color={withDraw} with error |
In my case, it was the cookies. Removed all cookies and all cached storage, and automagically Addons tab shows again! |
Thank you all! I'm learning ReactJS and ended here searching for a solution. I changed from: and it works! |
I solved it like this!!
[styled-component]
|
I got an error while rendering
StackGrid Component's
Opacity:0
style attribute does not change 😢I found a strange
prop
in the div element that render in the Grid Component.and it comes GridItem Component
It looks like a react transition error 😢
Appreciate any help! 🙏
The text was updated successfully, but these errors were encountered: