Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushal@gitlab.com>2017-01-13 19:07:21 +0300
committerKushal Pandya <kushal@gitlab.com>2017-01-24 21:09:28 +0300
commitfa21471af626d1bfdb738e1a77e0d5b7fc3d85a3 (patch)
tree72d74b32f268127f5ce79f68bfe693e1e75b8bee /app/views/admin/system_info
parenteeb68676331afeca4208084d0dcec81bc5e9472c (diff)
HAMLLint: Fix `UnnecessaryInterpolation` offences
Diffstat (limited to 'app/views/admin/system_info')
-rw-r--r--app/views/admin/system_info/show.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/system_info/show.html.haml b/app/views/admin/system_info/show.html.haml
index bfc6142067a..b2e693517fe 100644
--- a/app/views/admin/system_info/show.html.haml
+++ b/app/views/admin/system_info/show.html.haml
@@ -29,5 +29,5 @@
.data
- @disks.each do |disk|
%h1= "#{number_to_human_size(disk[:bytes_used])} / #{number_to_human_size(disk[:bytes_total])}"
- %p= "#{disk[:disk_name]}"
- %p= "#{disk[:mount_path]}"
+ %p= disk[:disk_name]
+ %p= disk[:mount_path]