Fixed new object request node and allowed multiple classes with dot notation
All checks were successful
Build / build (push) Successful in 39s
All checks were successful
Build / build (push) Successful in 39s
This commit is contained in:
@@ -521,6 +521,25 @@
|
||||
</nodify:Node>
|
||||
</DataTemplate>
|
||||
|
||||
<DataTemplate DataType="{x:Type local:NewObjectOperationViewModel}">
|
||||
<nodify:Node Header="{Binding Title}"
|
||||
Content="{Binding}"
|
||||
Input="{Binding Input}"
|
||||
Output="{Binding Output}">
|
||||
<nodify:Node.ContentTemplate>
|
||||
<DataTemplate DataType="{x:Type local:NewObjectOperationViewModel}">
|
||||
<StackPanel>
|
||||
<TextBlock Text="Model" FontSize="10" Foreground="Gray" Margin="0,0,0,2" />
|
||||
<ComboBox ItemsSource="{Binding AvailableModels}"
|
||||
SelectedItem="{Binding SelectedModel, Mode=TwoWay}"
|
||||
MinWidth="140"
|
||||
Margin="0,0,0,2" />
|
||||
</StackPanel>
|
||||
</DataTemplate>
|
||||
</nodify:Node.ContentTemplate>
|
||||
</nodify:Node>
|
||||
</DataTemplate>
|
||||
|
||||
<DataTemplate DataType="{x:Type local:StringConcatOperationViewModel}">
|
||||
<nodify:Node Header="{Binding Title}"
|
||||
Content="{Binding}"
|
||||
|
||||
Reference in New Issue
Block a user