Skip to content

Commit

Permalink
Set default DateConfiguration.HolidaysEnabled to FALSE (#623)
Browse files Browse the repository at this point in the history
The default will be kept at FALSE until the bug that causes Power BI Desktop to crash with certain DAX expressions is fixed
  • Loading branch information
albertospelta authored Mar 20, 2023
1 parent 3aa75d5 commit 276a56a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Models/ManageDates/DateConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ public DateConfiguration()
public bool HolidaysAvailable { get; set; } = false;

/// <summary>
/// Indicates whether the user has enabled this template for deploy
/// Indicates whether the user has enabled the creation of the holidays table
/// </summary>
[Required]
[JsonPropertyName("holidaysEnabled")]
public bool HolidaysEnabled { get; set; } = true;
public bool HolidaysEnabled { get; set; } = false;

[JsonPropertyName("holidaysTableName")]
public string? HolidaysTableName { get; set; }
Expand Down

0 comments on commit 276a56a

Please sign in to comment.