From 16ed64dbf42cfa4632d91d4b9fc58406d7a0bf98 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Thu, 16 Apr 2026 11:44:10 +0200 Subject: [PATCH] [chore:] there was a space missing that triggered my monk --- MainWindow.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 0f586e1..3abffb3 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -593,7 +593,7 @@ public partial class MainWindow : Window foreach (var k in Settings._instance.addressSets.addresses) foreach (var customer in Settings._instance.customers.customers) if (customer.ID == k.owner_id && customer.ID == customer_id) - LstCustomerAdressSets.Items.Add(k.ID + " - " + k.Name + "(" + k.KasPersons.Count + " Einträge)"); + LstCustomerAdressSets.Items.Add(k.ID + " - " + k.Name + " (" + k.KasPersons.Count + " Einträge)"); } private void LstCustomerAdressSets_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)