Skip to content

Commit

Permalink
Updated the icns with minor bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoffrey Lalanne committed Aug 23, 2024
1 parent 6e6615c commit 3a5367f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -397,4 +397,6 @@ FodyWeavers.xsd
# JetBrains Rider
*.sln.iml

*.mono
*.mono
.DS_Store
packed
Binary file modified src/KubeUI/Assets/icon.icns
Binary file not shown.
2 changes: 1 addition & 1 deletion src/KubeUI/ViewModels/ResourceListViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ private void SelectedNamespaces_CollectionChanged(object? sender, NotifyCollecti
new ResourceListViewDefinitionColumn<V1Pod, string>()
{
Name = "Controlled By",
Field = x => x.Metadata.OwnerReferences.FirstOrDefault()?.Name ?? "",
Field = x => x.Metadata.OwnerReferences?.FirstOrDefault()?.Name ?? "",
Width = nameof(DataGridLengthUnitType.SizeToHeader)
},
new ResourceListViewDefinitionColumn<V1Pod, string>()
Expand Down

0 comments on commit 3a5367f

Please sign in to comment.