Merge pull request #38 from Day8/bug/rendering-operation-names
Fix rendering of correct operation names in traces
This commit is contained in:
commit
dd0ad6ac54
|
@ -159,7 +159,9 @@
|
|||
:re-frame.router/fsm-trigger "#fd701e"
|
||||
nil)}}
|
||||
[:td {:style row-style} (str op-type)]
|
||||
[:td {:style row-style} operation]
|
||||
[:td {:style row-style} (if (= PersistentVector (type (js->clj operation)))
|
||||
(second operation)
|
||||
operation)]
|
||||
[:td
|
||||
{:style (merge row-style {
|
||||
; :font-weight (if (< slower-than-bold-int duration)
|
||||
|
|
Loading…
Reference in New Issue