diff options
author | HampusM <hampus@hampusmat.com> | 2021-07-03 17:45:18 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-07-03 17:45:18 +0200 |
commit | 505c18041bebf533ec63fed3790f54f5c6e1843b (patch) | |
tree | a1e4661449e8757ac6b0ad83088759c1609ebc96 /packages/client/src/views/RepositoryLog.vue | |
parent | 7ee871e391cd2d2057175d54767fc71e708e32eb (diff) |
Made a bunch of frontend stuff work
Diffstat (limited to 'packages/client/src/views/RepositoryLog.vue')
-rw-r--r-- | packages/client/src/views/RepositoryLog.vue | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/client/src/views/RepositoryLog.vue b/packages/client/src/views/RepositoryLog.vue index efedd87..cda2889 100644 --- a/packages/client/src/views/RepositoryLog.vue +++ b/packages/client/src/views/RepositoryLog.vue @@ -31,7 +31,7 @@ </router-link> </td> <td>{{ commit.author.name }}</td> - <td>{{ format(new Date(commit.date), "yyyy-MM-dd hh:mm") }}</td> + <td>{{ format(new Date(commit.date * 1000), "yyyy-MM-dd hh:mm") }}</td> <td>{{ commit.files_changed }}</td> <td class="add-del"> <span>-{{ commit.deletions }}</span> / <span>+{{ commit.insertions }}</span> @@ -104,7 +104,8 @@ table { background-color: lighten(colors.$background, 5%); } td { - padding-bottom: 1em; + padding-bottom: 0.5rem; + padding-top: 0.5rem; } } } |