Skip to content
14 changes: 14 additions & 0 deletions src/dashboard/Data/Browser/Browser.scss
Original file line number Diff line number Diff line change
Expand Up @@ -251,3 +251,17 @@ body:global(.expanded) {
width: calc(100% - 280px);
float: left;
}

.editRowDialogFileCell {
max-width: 100%;
padding: 25px;
span {
display: flex;
span {
width: 90%;
}
& a {
position: relative;
}
}
}
2 changes: 1 addition & 1 deletion src/dashboard/Data/Browser/EditRowDialog.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export default class EditRowDialog extends React.Component {
let file = selectedObject[name];
let fileName = file && file.url() ? getFileName(file) : '';
inputComponent = (
<div style={{ padding: '25px' }}>
<div className={[styles.editRowDialogFileCell]}>
{file && <Pill value={fileName} fileDownloadLink={file.url()} />}
<div style={{ cursor: 'pointer' }}>
<Pill
Expand Down