Skip to content

Commit

Permalink
Merge with main branch
Browse files Browse the repository at this point in the history
ONE-vscode-DCO-1.0-Signed-off-by: Dayoung Lee <[email protected]>
  • Loading branch information
dayo09 committed Nov 2, 2023
1 parent 30df01f commit 6fcc1a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OneExplorer/OneExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class DirectoryNode extends Node {
if (dirNode && dirNode.getChildren().length > 0) {
this._childNodes!.push(dirNode);
}
} else if (fstat.isFile()) {
} else if (fstat.isFile() && this.isBaseModel(fname)) {
if (fname.endsWith(".pb")) {
const baseModelNode = NodeFactory.create(
NodeType.baseModel,
Expand Down

0 comments on commit 6fcc1a2

Please sign in to comment.