inline blame: Fix default setting for inline blame (#19943)

Follow-up to #19759. Fixes the default value. cc @pjtatlow 😄 

Release Notes:

- N/A
This commit is contained in:
Thorsten Ball 2024-10-30 11:40:04 +01:00 committed by GitHub
parent 4431ef1870
commit 774a8bf039
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -161,8 +161,9 @@ pub struct InlineBlameSettings {
const fn true_value() -> bool {
true
}
const fn false_value() -> bool {
true
false
}
#[derive(Clone, Debug, Default, Serialize, Deserialize, PartialEq, Eq, JsonSchema)]