Skip to content

Commit

Permalink
Corrected the rendering of custom JSON config components (#2858)
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox authored Dec 11, 2024
1 parent 000ac03 commit 7db0035
Show file tree
Hide file tree
Showing 13 changed files with 437 additions and 440 deletions.
40 changes: 34 additions & 6 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ jobs:
node-version: 20.x

- name: 'Install'
run: |
npm i -f
run: npm i -f

- name: 'Install Adapter'
run: npm i -w packages/admin -f
Expand Down Expand Up @@ -111,14 +110,43 @@ jobs:
with:
node-version: 20.x

- name: Install Dependencies
run: npm run install-monorepo
- name: 'Install'
run: npm i -f

- name: 'Install Adapter'
run: npm i -w packages/admin -f

- name: 'Install FE'
run: |
cd packages/admin/src-admin
npm i -f
- name: 'Lint Backend'
run: npm run lint-backend -w packages/admin

- name: 'Build backend'
run: npm run build:backend -w packages/admin

- name: Build
run: NODE_OPTIONS=--max_old_space_size=8192 npm run build
- name: 'Build adapter-react-v5'
run: npm run build -w packages/adapter-react-v5

- name: 'Build JsonConfig'
run: npm run build -w packages/jsonConfig

- name: 'Build dm-gui-components'
run: npm run build -w packages/dm-gui-components

- name: Check TypeScript files
run: |
cd packages/admin/src-admin
npm run check-ts
# Wait till js-controller 7 types are available
continue-on-error: true

- name: 'Build'
run: |
npm run clean
NODE_OPTIONS=--max_old_space_size=4096 npm run build
- name: Run GUI tests
run: npm run test:gui -w packages/admin/
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ The icons may not be reused in other projects without the proper flaticon licens
<!--
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**

- (@GermanBluefox) Corrected the rendering of custom JSON config components
- (@GermanBluefox) Corrected the news dialog for multi-line messages

### 7.4.4 (2024-12-08)

- (@GermanBluefox) Showed value in object edit dialog
Expand Down
Loading

0 comments on commit 7db0035

Please sign in to comment.