소스 검색

fix issue with cr question text editor

Jason Rivard 7 년 전
부모
커밋
c0435c0502
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      server/src/main/webapp/public/resources/js/configeditor-settings-challenges.js

+ 1 - 1
server/src/main/webapp/public/resources/js/configeditor-settings-challenges.js

@@ -296,7 +296,7 @@ ChallengeSettingHandler.editLocale = function(keyName, localeKey) {
                     };
                     processQuestion();
                     PWM_MAIN.addEventHandler(inputID, 'input', function () {
-                        if (!multiValues[rowKey]['adminDefined']) {
+                        if (multiValues[rowKey]['adminDefined']) {
                             PWM_VAR['clientSettingCache'][keyName][localeKey][rowKey]['text'] = PWM_MAIN.getObject(inputID).value;
                         }
                     });