From 9ce477320e6fd80abf905bfc4628d7cdad89c2c7 Mon Sep 17 00:00:00 2001 From: Vikas Agarwal Date: Thu, 29 Oct 2020 15:35:40 +0530 Subject: [PATCH] feat: enabled private description as per https://github.com/topcoder-platform/challenge-engine-ui/issues/880 --- src/components/ChallengeEditor/TextEditor-Field/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/ChallengeEditor/TextEditor-Field/index.js b/src/components/ChallengeEditor/TextEditor-Field/index.js index 303b8968..ba31a335 100644 --- a/src/components/ChallengeEditor/TextEditor-Field/index.js +++ b/src/components/ChallengeEditor/TextEditor-Field/index.js @@ -115,8 +115,7 @@ class TextEditorField extends Component { TextEditorField.defaultProps = { challengeTags: [], - // TODO: For our first go-live, we're probably going to have this UI in production before the Community App work to display data from V5 is available. Only hide the UI elements for private description for now. Don't take out any code or functionality. - shouldShowPrivateDescription: false, + shouldShowPrivateDescription: true, onUpdateMetadata: () => {}, onUpdateCheckbox: () => {}, addFileType: () => {},