Skip to content

Commit

Permalink
fix: feature flag for xml editor
Browse files Browse the repository at this point in the history
  • Loading branch information
Makar Sichevoi committed Dec 5, 2023
1 parent 3e1db0b commit ecb403f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/classes/xmlEditor/XmlEditor.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ public function isLocked(): bool
{
if (
$this->getFeatureFlagChecker()->isEnabled(self::FEATURE_FLAG_XML_EDITOR_ENABLED)
|| $this->getFeatureFlagChecker()->isEnabled(self::LEGACY_FEATURE_FLAG_XML_EDITOR_ENABLED))
{
|| $this->getFeatureFlagChecker()->isEnabled(self::LEGACY_FEATURE_FLAG_XML_EDITOR_ENABLED)
) {
return false;
}

Expand Down

0 comments on commit ecb403f

Please sign in to comment.