Skip to content

Commit

Permalink
fix: bug in attr doc on hover (#313)
Browse files Browse the repository at this point in the history
Fix bug in attr doc on hover
  • Loading branch information
vetlek authored Oct 3, 2023
1 parent 9576a29 commit 7a09351
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions server/src/septic/docFormatting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@ export function formatObjectAttribute(
doc += newline + horizontalRule();
doc += newline + attrDoc.description;
doc += newline + code("DataType:") + " " + formatDataType(attrDoc);
doc +=
newline + code("PublicProperty") + " " + attrDoc.calc
? "True"
: "False";
doc += newline + code("PublicProperty:") + " " + attrDoc.calc;
if (attrDoc.default.length) {
doc +=
newline +
Expand Down

0 comments on commit 7a09351

Please sign in to comment.