We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34c7b93 commit d8b855cCopy full SHA for d8b855c
src/components/BrowserCell/BrowserCell.react.js
@@ -263,7 +263,7 @@ export default class BrowserCell extends Component {
263
this.copyableValue = content = JSON.stringify(value);
264
} else if (type === 'File') {
265
const fileName = value.url() ? getFileName(value) : 'Uploading\u2026';
266
- content = <Pill value={fileName} />;
+ content = <Pill value={fileName} fileDownloadLink={value.url()} />;
267
this.copyableValue = fileName;
268
} else if (type === 'ACL') {
269
let pieces = [];
0 commit comments