Skip to content

Commit

Permalink
Merge pull request #1642 from milvus-io/fix/unknown-type
Browse files Browse the repository at this point in the history
fix: BooleanLiteral
  • Loading branch information
ThyeeZz authored Sep 25, 2024
2 parents 16c61fa + f4db032 commit ce215bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/blogs
Submodule blogs updated 2 files
+1 −1 package.json
+9 −9 yarn.lock
2 changes: 1 addition & 1 deletion src/docs
Submodule docs updated 365 files
2 changes: 2 additions & 0 deletions src/utils/mdx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ function extractValue(node) {
return result;
} else if (node.type === 'Identifier') {
return '${' + node.name + '}';
} else if (node.type === 'BooleanLiteral') {
return node.value;
} else {
return 'Unknown type';
}
Expand Down

0 comments on commit ce215bf

Please sign in to comment.