diff --git a/CHANGELOG.md b/CHANGELOG.md index 749ee83af..b1a4e5f7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## [2.31.3](https://github.com/dhis2/app-hub/compare/v2.31.2...v2.31.3) (2022-11-16) + + +### Bug Fixes + +* **apps:** fix source-url being cleared when new version is uploaded ([#697](https://github.com/dhis2/app-hub/issues/697)) ([4ff7525](https://github.com/dhis2/app-hub/commit/4ff7525e89083dcf6154964762755d38dee65b3d)) + +## [2.31.2](https://github.com/dhis2/app-hub/compare/v2.31.1...v2.31.2) (2022-11-15) + + +### Bug Fixes + +* **add app:** allow clearing optional select field ([#694](https://github.com/dhis2/app-hub/issues/694)) ([24bd6bc](https://github.com/dhis2/app-hub/commit/24bd6bc55221d3fbb06d55dd637fc2d79738a4ab)) + +## [2.31.1](https://github.com/dhis2/app-hub/compare/v2.31.0...v2.31.1) (2022-11-15) + + +### Bug Fixes + +* **description-editor:** fix some styling issues ([1835663](https://github.com/dhis2/app-hub/commit/1835663afa6ddc970e5f695fdaef645e3ebff5d6)) + # [2.31.0](https://github.com/dhis2/app-hub/compare/v2.30.2...v2.31.0) (2022-09-21) diff --git a/client/package.json b/client/package.json index 19b732664..326bb29f7 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "client", - "version": "2.31.0", + "version": "2.31.3", "description": "The App Hub Client", "repository": "https://github.com/dhis2/app-hub", "author": "Birk Johansson ", diff --git a/client/src/pages/UserAppEdit/DescriptionEditor.js b/client/src/pages/UserAppEdit/DescriptionEditor.js index 7068c0b41..5596ec7a7 100644 --- a/client/src/pages/UserAppEdit/DescriptionEditor.js +++ b/client/src/pages/UserAppEdit/DescriptionEditor.js @@ -5,6 +5,7 @@ import { useField } from 'react-final-form' import AppDescription from '../../components/AppDescription/AppDescription' import styles from './UserAppEdit.module.css' import MarkdownEditor from '../../components/MarkdownEditor/MarkdownEditor' +import cx from 'classnames' const tabs = { WRITE: 'WRITE', @@ -38,9 +39,11 @@ const DescriptionEditor = ({ description }) => { Preview - {selectedTab === tabs.WRITE && ( - - )} + +