diff --git a/CHANGELOG.md b/CHANGELOG.md
index f22fa8404..c91d955b8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,13 +12,13 @@ Web UI version numbers should always match the corresponding version of LBRY App
*
### Changed
- *
- *
+ * Changed the File page to make it clearer how to to open the folder for a file
### Fixed
* Improve layout (and implementation) of the icon panel in file tiles and cards
* The folder icon representing a local download now shows up properly on Channel pages (#587)
- *
+ * While editing a publish, the URL will no longer change if you select a new file. (#601)
+ * Fixed issues with opening the folder for a file (#606)
### Deprecated
*
diff --git a/ui/js/component/fileDetails/view.jsx b/ui/js/component/fileDetails/view.jsx
index c2cfda468..aaa6ab24e 100644
--- a/ui/js/component/fileDetails/view.jsx
+++ b/ui/js/component/fileDetails/view.jsx
@@ -29,8 +29,9 @@ class FileDetails extends React.PureComponent {
const { description, language, license } = metadata;
const { height } = claim;
const mediaType = lbry.getMediaType(contentType);
- const directory = fileInfo && fileInfo.download_path
- ? path.dirname(fileInfo.download_path)
+
+ const downloadPath = fileInfo
+ ? path.normalize(fileInfo.download_path)
: null;
return (
@@ -59,12 +60,12 @@ class FileDetails extends React.PureComponent {