Added extra = to prevent compile failure
This commit is contained in:
parent
4ba222c8c8
commit
4aea01a242
|
|
@ -41,7 +41,7 @@ const Article = ({article}) => {
|
|||
|
||||
return <div key={i}>{output[i]}</div>;
|
||||
|
||||
} else if(type[i] == 1) { // Return Code text type
|
||||
} else if(type[i] === 1) { // Return Code text type
|
||||
|
||||
return <div className="code" key={i}>{output[i]}</div>;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue