[Security Solution] Enable the feature flag for JSON diffing in prebuilt rules (#173368)

**Ticket:** https://github.com/elastic/kibana/issues/169160

## Summary

Sets the `jsonPrebuiltRulesDiffingEnabled` to `true` to enable the new
"Updates" tab in prebuilt rules flyout.

### IMPORTANT: Merge only once acceptance and exploratory testing are
passed!

<img width="1178" alt="Scherm­afbeelding 2023-12-13 om 17 37 07"
src="9e07e069-595f-49a6-98c2-d2ed4aa3f977">

Co-authored-by: Georgii Gorbachev <georgii.gorbachev@elastic.co>
This commit is contained in:
Nikita Indik 2023-12-21 12:39:16 +01:00 committed by GitHub
parent e51a3f9efc
commit d7b99a5877
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -162,7 +162,7 @@ export const allowedExperimentalValues = Object.freeze({
* This tab shows the JSON diff between the installed prebuilt rule
* version and the latest available version.
*/
jsonPrebuiltRulesDiffingEnabled: false,
jsonPrebuiltRulesDiffingEnabled: true,
});
type ExperimentalConfigKeys = Array<keyof ExperimentalFeatures>;