Commit ed71cae2 authored by Denys Mishunov's avatar Denys Mishunov Committed by Vitaly Slobodin

Fixed icons reference

parent f0722cd8
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment