Skip to content

Commit

Permalink
Format ongoing summary in the UI (#3006)
Browse files Browse the repository at this point in the history
* fix: format ongoing monitoring summary well

* fix: release version

* fix: update package-lock
  • Loading branch information
MatanYadaev authored Jan 29, 2025
1 parent 8169f07 commit b2cd32a
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 8 deletions.
7 changes: 7 additions & 0 deletions apps/kyb-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# kyb-app

## 0.3.119

### Patch Changes

- Updated dependencies
- @ballerine/ui@0.5.70

## 0.3.118

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/kyb-app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ballerine/kyb-app",
"private": true,
"version": "0.3.118",
"version": "0.3.119",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -19,7 +19,7 @@
"@ballerine/blocks": "0.2.34",
"@ballerine/common": "^0.9.70",
"@ballerine/workflow-browser-sdk": "0.6.89",
"@ballerine/ui": "0.5.69",
"@ballerine/ui": "0.5.70",
"@lukemorales/query-key-factory": "^1.0.3",
"@radix-ui/react-icons": "^1.3.0",
"@rjsf/core": "^5.9.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/react-pdf-toolkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @ballerine/react-pdf-toolkit

## 1.2.70

### Patch Changes

- Updated dependencies
- @ballerine/ui@0.5.70

## 1.2.69

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-pdf-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ballerine/react-pdf-toolkit",
"private": false,
"version": "1.2.69",
"version": "1.2.70",
"types": "./dist/build.d.ts",
"main": "./dist/react-pdf-toolkit.js",
"module": "./dist/react-pdf-toolkit.mjs",
Expand All @@ -27,7 +27,7 @@
},
"dependencies": {
"@ballerine/config": "^1.1.32",
"@ballerine/ui": "0.5.69",
"@ballerine/ui": "0.5.70",
"@react-pdf/renderer": "^3.1.14",
"@sinclair/typebox": "^0.31.7",
"ajv": "^8.12.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ballerine/ui

## 0.5.70

### Patch Changes

- Format ongoing summary in the UI

## 0.5.69

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ballerine/ui",
"private": false,
"version": "0.5.69",
"version": "0.5.70",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ export const BusinessReportSummary: FunctionComponent<{
<CardContent>
<div>
<h4 className={'mb-4 font-semibold'}>Ongoing Monitoring Summary</h4>
<TextWithNAFallback as={'p'}>{ongoingMonitoringSummary}</TextWithNAFallback>
<TextWithNAFallback as={'p'} className="whitespace-pre-wrap">
{ongoingMonitoringSummary}
</TextWithNAFallback>
</div>
</CardContent>
)}
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b2cd32a

Please sign in to comment.