Add a loading file info message.

This commit is contained in:
6ea86b96 2017-07-19 13:12:01 +07:00
parent 63daf5d282
commit 76a99cc576

View file

@ -142,6 +142,8 @@ class FileActions extends React.PureComponent {
onClick={() => openInShell(fileInfo)}
/>
);
} else if (!fileInfo) {
content = <BusyMessage message={__("Fetching file info")} />;
} else {
console.log("handle this case of file action props?");
}