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:
Riccardo Graziosi
2022-06-10 13:40:29 +02:00
committed by GitHub
parent 94f77517a8
commit db674eaf6a
5 changed files with 307 additions and 199 deletions

View File

@@ -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>
);