We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd85ca3 commit e6ac33fCopy full SHA for e6ac33f
1 file changed
packages/plugin-outline-pane/src/views/tree-title.tsx
@@ -85,11 +85,15 @@ export default class TreeTitle extends PureComponent<{
85
86
componentDidMount() {
87
const { treeNode } = this.props;
88
+ const { filterWorking, matchSelf, keywords } = treeNode.filterReult;
89
this.setState({
90
editing: false,
91
title: treeNode.titleLabel,
92
condition: treeNode.condition,
93
visible: !treeNode.hidden,
94
+ filterWorking,
95
+ matchSelf,
96
+ keywords,
97
});
98
treeNode.onTitleLabelChanged(() => {
99
0 commit comments