summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2017-09-29 19:25:01 +0000
committerJacob Schatz <jschatz@gitlab.com>2017-09-29 19:25:01 +0000
commit171714c9231deb95136088ba1c0621379467de39 (patch)
treeacb2985cc8cf2e42264d6f1f6684c89c3c4a7d13
parenta7976905d17c22b0f2caeb54fa7f468568412cd1 (diff)
parentaedcaba4940be089d409b9bf27cf3a30f8460e8c (diff)
downloadgitlab-ce-171714c9231deb95136088ba1c0621379467de39.tar.gz
Merge branch 'jramsay-38624-right-align' into 'master'
Fix incorrectly aligned last updated time Closes #38624 See merge request gitlab-org/gitlab-ce!14592
-rw-r--r--app/assets/javascripts/repo/components/repo_file.vue2
-rw-r--r--app/assets/javascripts/repo/components/repo_sidebar.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/repo/components/repo_file.vue b/app/assets/javascripts/repo/components/repo_file.vue
index 20ebf840774..8b9cbd23456 100644
--- a/app/assets/javascripts/repo/components/repo_file.vue
+++ b/app/assets/javascripts/repo/components/repo_file.vue
@@ -95,7 +95,7 @@ export default RepoFile;
</div>
</td>
- <td class="hidden-xs">
+ <td class="hidden-xs text-right">
<span
class="commit-update"
:title="tooltipTitle(file.lastCommitUpdate)">
diff --git a/app/assets/javascripts/repo/components/repo_sidebar.vue b/app/assets/javascripts/repo/components/repo_sidebar.vue
index dc1bda95a01..1e40814b95f 100644
--- a/app/assets/javascripts/repo/components/repo_sidebar.vue
+++ b/app/assets/javascripts/repo/components/repo_sidebar.vue
@@ -75,7 +75,7 @@ export default {
<tr>
<th class="name">Name</th>
<th class="hidden-sm hidden-xs last-commit">Last Commit</th>
- <th class="hidden-xs last-update">Last Update</th>
+ <th class="hidden-xs last-update text-right">Last Update</th>
</tr>
</thead>
<tbody>