Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/026a2cace56e2c7c4cd3eccd1ffae2f7fac93090 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Checkbox can be checked when disabled

pull/6/head
Qstick 7 years ago
parent 8624ff5c6a
commit 026a2cace5

@ -69,6 +69,10 @@ class CheckInput extends Component {
}
onClick = (event) => {
if (this.props.isDisabled) {
return;
}
const shiftKey = event.nativeEvent.shiftKey;
const checked = !this._checkbox.checked;

Loading…
Cancel
Save