Skip to content

Commit 3ae89f0

Browse files
committed
fix: escape curly braces in XAML document icon
1 parent a4c2717 commit 3ae89f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CodingWithCalvin.CouchbaseExplorer/CouchbaseExplorerWindowControl.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
<!-- Data Template for Document Node -->
120120
<DataTemplate DataType="{x:Type vm:DocumentNode}">
121121
<StackPanel Orientation="Horizontal">
122-
<TextBlock Text="{ }" Margin="0,0,5,0" FontFamily="Consolas" />
122+
<TextBlock Text="{}{ }" Margin="0,0,5,0" FontFamily="Consolas" />
123123
<TextBlock Text="{Binding Name}" />
124124
</StackPanel>
125125
</DataTemplate>

0 commit comments

Comments
 (0)