소스 검색

Remove the boolean conversion of authLogin string to display the string value instead of 'true'. (#3995)

master
Damien Fetis 6 년 전
부모
커밋
e652117571
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      react/features/settings/functions.js

+ 1
- 1
react/features/settings/functions.js 파일 보기

@@ -122,7 +122,7 @@ export function getProfileTabProps(stateful: Object | Function) {
122 122
 
123 123
     return {
124 124
         authEnabled: Boolean(conference && authEnabled),
125
-        authLogin: Boolean(conference && authLogin),
125
+        authLogin: authLogin,
126 126
         displayName: localParticipant.name,
127 127
         email: localParticipant.email
128 128
     };

Loading…
취소
저장