diff options
Diffstat (limited to 'components/layout/layout_debug.rs')
-rw-r--r-- | components/layout/layout_debug.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/layout_debug.rs b/components/layout/layout_debug.rs index 6e00a102bcc..a70dca58840 100644 --- a/components/layout/layout_debug.rs +++ b/components/layout/layout_debug.rs @@ -104,7 +104,7 @@ pub fn begin_trace(flow_root: FlowRef) { let flow_trace = json::encode(&flow::base(flow_root.deref())); let state = State { - scope_stack: vec![box ScopeData::new("root".to_string(), flow_trace)], + scope_stack: vec![box ScopeData::new("root".into_string(), flow_trace)], flow_root: flow_root, }; state_key.replace(Some(RefCell::new(state))); |