hide length and last modified columns on mobile

This commit is contained in:
Sebastian Sdorra
2018-10-24 10:14:42 +02:00
parent 9b210fd212
commit 43114a11af
2 changed files with 8 additions and 4 deletions

View File

@@ -128,8 +128,12 @@ class FileTree extends React.Component<Props> {
<tr>
<th className={classes.iconColumn} />
<th>{t("sources.file-tree.name")}</th>
<th>{t("sources.file-tree.length")}</th>
<th>{t("sources.file-tree.lastModified")}</th>
<th className="is-hidden-mobile">
{t("sources.file-tree.length")}
</th>
<th className="is-hidden-mobile">
{t("sources.file-tree.lastModified")}
</th>
<th>{t("sources.file-tree.description")}</th>
</tr>
</thead>