Skip to content

Commit 0a0db52

Browse files
authored
Fix feature flag name (#1508)
1 parent 907dea5 commit 0a0db52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Elastic.Documentation.Configuration/Builder/FeatureFlags.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ public bool PrimaryNavEnabled
2222

2323
public bool LazyLoadNavigation
2424
{
25-
get => IsEnabled("LAZY_LOAD_NAVIGATION");
26-
set => _featureFlags["LAZY_LOAD_NAVIGATION"] = value;
25+
get => IsEnabled("lazy-load-navigation");
26+
set => _featureFlags["lazy-load-navigation"] = value;
2727
}
2828

2929
private bool IsEnabled(string key)

0 commit comments

Comments
 (0)