fix(builder): Prevent overflow in node output (#7912)

This commit is contained in:
Krzysztof Czerwinski
2024-08-28 16:27:42 +01:00
committed by GitHub
parent e725305e15
commit c5615aa862

View File

@@ -369,7 +369,7 @@ export function CustomNode({ data, id }: NodeProps<CustomNode>) {
</div>
</div>
{isOutputOpen && (
<div className="node-output" onClick={handleOutputClick}>
<div className="node-output break-words" onClick={handleOutputClick}>
<p>
<strong>Status:</strong>{" "}
{typeof data.status === "object"