diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a5daaa5..1840673e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Unreleased - [BREAKING CHANGE] Ruby version 3.1.0 or later is required. [#632](https://github.com/MiniProfiler/rack-mini-profiler/pull/632) +- [FIX] alignment of SQL query start times. [#627](https://github.com/MiniProfiler/rack-mini-profiler/pull/627) - [FIX] Lower case HTTP response headers to be compatible with Rack 3 [#628](https://github.com/MiniProfiler/rack-mini-profiler/pull/628) - [FIX] Truncate long profiler name in profiler popup. [#634](https://github.com/MiniProfiler/rack-mini-profiler/pull/634) - [FIX] `flamegraph_mode` query param having no effect. [#635](https://github.com/MiniProfiler/rack-mini-profiler/pull/635) diff --git a/lib/html/includes.css b/lib/html/includes.css index 055f273a..7f85b181 100644 --- a/lib/html/includes.css +++ b/lib/html/includes.css @@ -113,6 +113,8 @@ float: left; } .profiler-result .profiler-info .profiler-server-time { white-space: nowrap; } + .profiler-result .profiler-info .profiler-number { + display: block; } .profiler-result .profiler-timings th { background-color: #fff; color: #767676; diff --git a/lib/html/includes.scss b/lib/html/includes.scss index 59f918d4..5e52b435 100644 --- a/lib/html/includes.scss +++ b/lib/html/includes.scss @@ -114,6 +114,9 @@ $zindex: 2147483640; // near 32bit max 2147483647 .profiler-server-time { white-space: nowrap; } + .profiler-number { + display: block; + } } .profiler-timings { diff --git a/lib/mini_profiler/asset_version.rb b/lib/mini_profiler/asset_version.rb index 5617a77d..a1e7e4a6 100644 --- a/lib/mini_profiler/asset_version.rb +++ b/lib/mini_profiler/asset_version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module Rack class MiniProfiler - ASSET_VERSION = '6b13136c854b67ed12d949d9a599d925' + ASSET_VERSION = '5b33967a307f940e28670fdeabb510b1' end end