Skip to content

Commit

Permalink
#270 ⚡️ profile error stack trace 헤더 정보 렌더링 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
yosong.heo committed Dec 29, 2021
1 parent b5f4799 commit 40a16e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@

.frame-profile div.xlog-data span.data.error {
color: #FF030D;
white-space: pre;
}

.frame-profile div.xlog-data span.data.tx-link {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,10 @@ class FrameProfile extends Component {
{meta.type === "bytes" && `${numeral(this.props.profile[meta.key]).format(this.props.config.numberFormat)} b`}
{meta.type === "number" && numeral(this.props.profile[meta.key]).format(this.props.config.numberFormat)}
{meta.type === "boolean" && this.boolTostr(this.props.profile[meta.key]) }
{(meta.type !== "datetime" && meta.type !== "ms" && meta.type !== "bytes" && meta.type !== "number" && meta.type !== "boolean") && this.props.profile[meta.key]}
{
(meta.type !== "datetime" && meta.type !== "ms" && meta.type !== "bytes" && meta.type !== "number" && meta.type !== "boolean") &&
this.props.profile[meta.key]
}
</span>
</div>
})}
Expand Down

0 comments on commit 40a16e4

Please sign in to comment.