Skip to content
Snippets Groups Projects
Commit 6e0575a2 authored by Siddharth Asthana's avatar Siddharth Asthana :bow:
Browse files

Merge branch 'issue_341248_show.html.haml' into 'master'

Fix usage of distance_of_time_in_words_to_now

See merge request !81178
parents 66ed7b5c abf386c2
No related branches found
No related tags found
No related merge requests found
Pipeline #588516230 failed
Pipeline: GitLab

#588523824

    ......@@ -29,9 +29,9 @@
    %h4.page-title.d-flex
    .gl-display-flex.gl-align-items-center.gl-justify-content-center
    = sprite_icon('clock', size: 18, css_class: 'pod-icon gl-mr-3')
    = _('Uptime')
    = _('System started')
    .data
    %h2= distance_of_time_in_words_to_now(Rails.application.config.booted_at)
    %h2= time_ago_with_tooltip(Rails.application.config.booted_at)
    .col-sm
    .bg-light.info-well.p-3
    %h4.page-title.d-flex
    ......
    ......@@ -37913,6 +37913,9 @@ msgstr ""
    msgid "System output"
    msgstr ""
     
    msgid "System started"
    msgstr ""
    msgid "Table of Contents"
    msgstr ""
     
    ......@@ -41502,9 +41505,6 @@ msgstr ""
    msgid "Upstream"
    msgstr ""
     
    msgid "Uptime"
    msgstr ""
    msgid "Upvotes"
    msgstr ""
     
    ......@@ -24,7 +24,7 @@
    expect(page).to have_content 'CPU 2 cores'
    expect(page).to have_content 'Memory Usage 4 GB / 16 GB'
    expect(page).to have_content 'Disk Usage'
    expect(page).to have_content 'Uptime'
    expect(page).to have_content 'System started'
    end
    end
    ......@@ -39,7 +39,7 @@
    expect(page).to have_content 'CPU Unable to collect CPU info'
    expect(page).to have_content 'Memory Usage 4 GB / 16 GB'
    expect(page).to have_content 'Disk Usage'
    expect(page).to have_content 'Uptime'
    expect(page).to have_content 'System started'
    end
    end
    ......@@ -54,7 +54,7 @@
    expect(page).to have_content 'CPU 2 cores'
    expect(page).to have_content 'Memory Usage Unable to collect memory info'
    expect(page).to have_content 'Disk Usage'
    expect(page).to have_content 'Uptime'
    expect(page).to have_content 'System started'
    end
    end
    end
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment