File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed
frontend/src/components/files Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ export default function FilesTable(props: FilesTableProps) {
8383 < TableHead >
8484 < TableRow >
8585 < TableCell > Name</ TableCell >
86- < TableCell > Version</ TableCell >
8786 < TableCell align = "right" > Created</ TableCell >
8887 < TableCell align = "right" > Size</ TableCell >
8988 < TableCell align = "right" > Type</ TableCell >
@@ -109,7 +108,6 @@ export default function FilesTable(props: FilesTableProps) {
109108 { item . name }
110109 </ Button >
111110 </ TableCell >
112- < TableCell align = "right" > </ TableCell >
113111 < TableCell align = "right" > { parseDate ( item . created ) } </ TableCell >
114112 < TableCell align = "right" > </ TableCell >
115113 < TableCell align = "right" > </ TableCell >
Original file line number Diff line number Diff line change @@ -52,9 +52,6 @@ export function FilesTableFileEntry(props: FilesTableFileEntryProps) {
5252 ) }
5353 < Button onClick = { ( ) => selectFile ( file . id ) } > { file . name } </ Button >
5454 </ TableCell >
55- < TableCell >
56- < VersionChip selectedVersion = { selectedVersion } />
57- </ TableCell >
5855 < TableCell align = "right" > { parseDate ( file . created ) } </ TableCell >
5956 < TableCell align = "right" >
6057 { file . bytes ? prettyBytes ( file . bytes ) : "NA" }
You can’t perform that action at this time.
0 commit comments