This repository was archived by the owner on Nov 25, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
core/src/plugins/gui.ajax/res/js/ui/reactjs/jsx Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 81
81
triggerPropsOnChange :function ( newValue , oldValue ) {
82
82
if ( this . props . attributes [ 'type' ] === 'password' ) {
83
83
this . toggleEditMode ( ) ;
84
+ this . props . onChange ( newValue , oldValue , { type :this . props . attributes [ 'type' ] } ) ;
85
+ } else {
86
+ this . props . onChange ( newValue , oldValue ) ;
84
87
}
85
- this . props . onChange ( newValue , oldValue , { type :this . props . attributes [ 'type' ] } ) ;
86
88
} ,
87
89
88
90
componentWillReceiveProps :function ( newProps ) {
Original file line number Diff line number Diff line change @@ -93,9 +93,11 @@ function checkThemeUsed($themeName){
93
93
}
94
94
95
95
checkPhpVersion ('5.5.9 ' );
96
- checkPluginUsed ("conf " , "serial " );
97
- checkPluginUsed ("auth " , "serial " );
98
- checkPluginUsed ("auth " , "cmsms " );
99
- checkPluginUsed ("access " , "remote_fs " );
100
- checkThemeUsed ("vision " );
101
- checkThemeUsed ("umbra " );
96
+ if (AJXP_VERSION === '6.4.2 ' ){
97
+ checkPluginUsed ("conf " , "serial " );
98
+ checkPluginUsed ("auth " , "serial " );
99
+ checkPluginUsed ("auth " , "cmsms " );
100
+ checkPluginUsed ("access " , "remote_fs " );
101
+ checkThemeUsed ("vision " );
102
+ checkThemeUsed ("umbra " );
103
+ }
You can’t perform that action at this time.
0 commit comments