Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Treemap zoom when a group level is null #1676

Merged
merged 3 commits into from
Dec 16, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove spurious logging
  • Loading branch information
texodus committed Dec 15, 2021
commit 52c5138988bc5ce00ad2a9f043eaddb47a608b20
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,6 @@ impl Component for ConfigSelector {
""
};

// web_sys::console::log_1(&"redraw".into());
let dragend = Callback::from({
let dragdrop = self.props.dragdrop.clone();
move |_event| dragdrop.drag_end()
Expand Down
1 change: 0 additions & 1 deletion rust/perspective-viewer/src/rust/config/view_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ impl ViewConfig {
config.expressions = self.expressions.clone();
}
std::mem::swap(self, &mut config);
web_sys::console::log_1(&format!("{:?}", &self).into());
}

/// Apply `ViewConfigUpdate` to a `ViewConfig`, ignoring any fields in `update`
Expand Down