File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Ui/view/base/web/js/form/element Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -114,13 +114,13 @@ protected function configure()
114
114
),
115
115
new InputOption (
116
116
static ::OPTION_LOCK_ENV ,
117
- 'le ' ,
117
+ 'e ' ,
118
118
InputOption::VALUE_NONE ,
119
119
'Lock value which prevents modification in the Admin (will be saved in app/etc/env.php) '
120
120
),
121
121
new InputOption (
122
122
static ::OPTION_LOCK_CONFIG ,
123
- 'lc ' ,
123
+ 'c ' ,
124
124
InputOption::VALUE_NONE ,
125
125
'Lock and share value with other installations, prevents modification in the Admin '
126
126
. '(will be saved in app/etc/config.php) '
@@ -139,8 +139,10 @@ protected function configure()
139
139
/**
140
140
* Creates and run appropriate processor, depending on input options.
141
141
*
142
- * {@inheritdoc}
142
+ * @param InputInterface $input
143
+ * @param OutputInterface $output
143
144
* @since 100.2.0
145
+ * @return int|null
144
146
*/
145
147
protected function execute (InputInterface $ input , OutputInterface $ output )
146
148
{
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ define([
296
296
this . validation [ rule ] = options ;
297
297
}
298
298
299
- changed = utils . compare ( rules , this . validation ) . equal ;
299
+ changed = ! utils . compare ( rules , this . validation ) . equal ;
300
300
301
301
if ( changed ) {
302
302
this . required ( ! ! rules [ 'required-entry' ] ) ;
You can’t perform that action at this time.
0 commit comments