Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
af1a2666
Commit
af1a2666
authored
Jun 08, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #2299: Date and time in request list is now never wrapped
parent
c7d84390
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
CHANGELOG.md
extensions/debug/CHANGELOG.md
+1
-0
main.css
extensions/debug/assets/main.css
+5
-0
index.php
extensions/debug/views/default/index.php
+2
-1
No files found.
extensions/debug/CHANGELOG.md
View file @
af1a2666
...
...
@@ -5,6 +5,7 @@ Yii Framework 2 debug extension Change Log
--------------------------
-
Bug #1263: Fixed the issue that Gii and Debug modules might be affected by incompatible asset manager configuration (qiangxue)
-
Enh #2299: Date and time in request list is now never wrapped (samdark)
-
Enh #3088: The debug module will manage their own URL rules now (qiangxue)
-
Enh #3103: debugger panel is now not displayed when printing a page (githubjeka)
-
Enh #3108: Added
`yii\debug\Module::enableDebugLogs`
to disable logging debug logs by default (qiangxue)
...
...
extensions/debug/assets/main.css
View file @
af1a2666
...
...
@@ -93,3 +93,7 @@ a.desc:after {
width
:
12%
;
font-weight
:
bold
;
}
.nowrap
{
white-space
:
nowrap
;
}
\ No newline at end of file
extensions/debug/views/default/index.php
View file @
af1a2666
...
...
@@ -61,8 +61,9 @@ if (isset($this->context->module->panels['db']) && isset($this->context->module-
[
'attribute'
=>
'time'
,
'value'
=>
function
(
$data
)
use
(
$timeFormatter
)
{
return
$timeFormatter
->
asDateTime
(
$data
[
'time'
],
'short'
)
;
return
'<span class="nowrap">'
.
$timeFormatter
->
asDateTime
(
$data
[
'time'
],
'short'
)
.
'</span>'
;
},
'format'
=>
'html'
,
],
'ip'
,
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment