|
@@ -317,6 +317,12 @@ export default class ContentsList extends Component<PropsType, StateType> {
|
|
|
<Row
|
|
<Row
|
|
|
key={i}
|
|
key={i}
|
|
|
onClick={() => {
|
|
onClick={() => {
|
|
|
|
|
+ if (
|
|
|
|
|
+ !this.props.folderPath ||
|
|
|
|
|
+ this.props.folderPath === ""
|
|
|
|
|
+ ) {
|
|
|
|
|
+ this.props.setFolderPath("./");
|
|
|
|
|
+ }
|
|
|
this.props.setProcfileProcess(process);
|
|
this.props.setProcfileProcess(process);
|
|
|
}}
|
|
}}
|
|
|
isLast={processes.length - 1 === i}
|
|
isLast={processes.length - 1 === i}
|