Skip to content

Commit 4498205

Browse files
committed
Merge branch '2.2-develop' of github.com:magento/magento2ce into MAGETWO-99528
2 parents e3736a7 + 3c25318 commit 4498205

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

app/code/Magento/Config/Console/Command/ConfigSetCommand.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ protected function configure()
114114
),
115115
new InputOption(
116116
static::OPTION_LOCK_ENV,
117-
'le',
117+
'e',
118118
InputOption::VALUE_NONE,
119119
'Lock value which prevents modification in the Admin (will be saved in app/etc/env.php)'
120120
),
121121
new InputOption(
122122
static::OPTION_LOCK_CONFIG,
123-
'lc',
123+
'c',
124124
InputOption::VALUE_NONE,
125125
'Lock and share value with other installations, prevents modification in the Admin '
126126
. '(will be saved in app/etc/config.php)'
@@ -139,8 +139,10 @@ protected function configure()
139139
/**
140140
* Creates and run appropriate processor, depending on input options.
141141
*
142-
* {@inheritdoc}
142+
* @param InputInterface $input
143+
* @param OutputInterface $output
143144
* @since 100.2.0
145+
* @return int|null
144146
*/
145147
protected function execute(InputInterface $input, OutputInterface $output)
146148
{

app/code/Magento/Ui/view/base/web/js/form/element/abstract.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ define([
296296
this.validation[rule] = options;
297297
}
298298

299-
changed = utils.compare(rules, this.validation).equal;
299+
changed = !utils.compare(rules, this.validation).equal;
300300

301301
if (changed) {
302302
this.required(!!rules['required-entry']);

0 commit comments

Comments
 (0)