Fix browse disabled

This commit is contained in:
Scott E. Graves
2018-12-15 00:00:09 -06:00
parent 1ea1804fd0
commit e14d1577e8

View File

@@ -60,7 +60,7 @@ export default CSSModules((props) => {
<Button clicked={()=>props.browseClicked(props.title, props.location)}
col={inputColumnSpan - 7}
colSpan={7}
disabled={props.mounted || props.disabled}
disabled={props.mounted || props.disabled || !props.allowMount}
key={'b' + key++}
row={secondRow}
rowSpan={7}>...</Button>