Skip to content

Add event version column#2321

Draft
ejsmith wants to merge 1 commit into
mainfrom
feature/add-event-version-column
Draft

Add event version column#2321
ejsmith wants to merge 1 commit into
mainfrom
feature/add-event-version-column

Conversation

@ejsmith

@ejsmith ejsmith commented Jun 22, 2026

Copy link
Copy Markdown
Member

Summary

  • Adds version to event summary responses from the existing event @version metadata.
  • Adds a hidden-by-default Version column to the Svelte event table so it can be selected and saved in saved views.

Closes #1299.

Verification

  • npm run check in src/Exceptionless.Web/ClientApp
  • dotnet test tests/Exceptionless.Tests/Exceptionless.Tests.csproj -- --filter-class Exceptionless.Tests.Plugins.SummaryDataTests

Comment on lines +64 to +68
string? version = ev.GetVersion();
if (String.IsNullOrWhiteSpace(version) || summary.Data is not IDictionary<string, object?> data)
return;

data.TryAdd("Version", version);

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need to add the version to the data instead of just accessing it where it is?

@ejsmith ejsmith force-pushed the feature/add-event-version-column branch from c51faa9 to f612ef6 Compare June 25, 2026 04:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

UI: Allow customizing event columns

1 participant