Skip to content

Commit bcff148

Browse files
authored
ignore the contours channel in tips (#2393)
1 parent e59b17a commit bcff148

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/marks/tip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const defaults = {
1919
};
2020

2121
// These channels are not displayed in the default tip; see formatChannels.
22-
const ignoreChannels = new Set(["geometry", "href", "src", "ariaLabel", "scales"]);
22+
const ignoreChannels = new Set(["geometry", "href", "src", "ariaLabel", "scales", "contours"]);
2323

2424
export class Tip extends Mark {
2525
constructor(data, options = {}) {

0 commit comments

Comments
 (0)