fix bg file path not showing

This commit is contained in:
SpikeHD
2022-06-01 18:13:25 -07:00
parent 53f42be967
commit a1f768140d

View File

@@ -30,12 +30,6 @@ export default class TextInput extends React.Component<IProps, IState> {
}
static getDerivedStateFromProps(props: IProps, state: IState) {
if (!props.readOnly) {
return {
value: state.value
}
}
return { value: props.value || '' }
}