Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
c215b24d
Commit
c215b24d
authored
Sep 25, 2020
by
Vitaly Slobodin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dmishunov-fixing-icons' into 'master'
Fixed icons reference See merge request gitlab-org/gitlab!43391
parents
bace5274
ed71cae2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
app/assets/javascripts/performance_bar/performance_bar_log.js
...assets/javascripts/performance_bar/performance_bar_log.js
+2
-2
No files found.
app/assets/javascripts/performance_bar/performance_bar_log.js
View file @
c215b24d
...
...
@@ -23,8 +23,8 @@ const logUserTimingMetrics = () => {
entries
.
forEach
(
entry
=>
{
const
{
name
,
entryType
,
startTime
,
duration
}
=
entry
;
const
typeMapper
=
{
PERFORMANCE_MARK
:
String
.
fromCodePoint
(
0x1f3af
),
PERFORMANCE_MEASURE
:
String
.
fromCodePoint
(
0x1f4d0
),
[
PERFORMANCE_TYPE_MARK
]
:
String
.
fromCodePoint
(
0x1f3af
),
[
PERFORMANCE_TYPE_MEASURE
]
:
String
.
fromCodePoint
(
0x1f4d0
),
};
console
.
group
(
`
${
typeMapper
[
entryType
]}
${
name
}
`
);
if
(
entryType
===
PERFORMANCE_TYPE_MARK
)
{
...
...
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