Skip to content

Commit

Permalink
Fix type conflict in release build.
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster620 committed Oct 3, 2024
1 parent 84bd716 commit 0e4f735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ULogViewer/Controls/LogProfileEditorDialog.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ public async void ImportEmbeddedScriptLogDataSourceProviderFromFile()
/// <summary>
/// Get all log levels.
/// </summary>
public LogLevel[] LogLevels { get; } = Enum.GetValues<LogLevel>();
public Logs.LogLevel[] LogLevels { get; } = Enum.GetValues<Logs.LogLevel>();


/// <summary>
Expand Down

0 comments on commit 0e4f735

Please sign in to comment.