mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
Update rails, webpacker and other deps (#122)
* Update webpacker to 4.3.0 * Update Rails to 6.0.5 * Update webpack-dev-server to 3.11.0 * Update @rails packages to 6.0.5 in package.json
This commit is contained in:
committed by
GitHub
parent
94f77517a8
commit
db674eaf6a
@@ -9,7 +9,7 @@ interface Props {
|
||||
|
||||
const Switch = ({ label, onClick, checked, htmlId }: Props) => (
|
||||
<div className="checkboxSwitch">
|
||||
<input type="checkbox" id={htmlId} onClick={onClick} checked={checked} />
|
||||
<input type="checkbox" id={htmlId} onClick={onClick} checked={checked} onChange={() => null} />
|
||||
<label htmlFor={htmlId}>{label}</label>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user