We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6950329 + 58f5bb8 commit 9000a87Copy full SHA for 9000a87
packages/plugin-outline-pane/src/views/tree-title.tsx
@@ -86,12 +86,16 @@ export default class TreeTitle extends PureComponent<{
86
87
componentDidMount() {
88
const { treeNode } = this.props;
89
+ const { filterWorking, matchSelf, keywords } = treeNode.filterReult;
90
this.setState({
91
editing: false,
92
title: treeNode.titleLabel,
93
condition: treeNode.condition,
94
loop: treeNode.loop,
95
visible: !treeNode.hidden,
96
+ filterWorking,
97
+ matchSelf,
98
+ keywords,
99
});
100
treeNode.onTitleLabelChanged(() => {
101
0 commit comments