This is an automated email from the ASF dual-hosted git repository. marat pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-karavan.git
commit 852f6588af24a9a1730fe78044087e6a0364be3e Author: Marat Gubaidullin <[email protected]> AuthorDate: Wed Feb 21 12:46:32 2024 -0500 Support varibles #1136 --- karavan-vscode/webview/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/karavan-vscode/webview/App.tsx b/karavan-vscode/webview/App.tsx index 6062553b..82148d01 100644 --- a/karavan-vscode/webview/App.tsx +++ b/karavan-vscode/webview/App.tsx @@ -260,6 +260,7 @@ class App extends React.Component<Props, State> { onInternalConsumerClick={(uri, name, routeId) => { vscode.postMessage({ command: 'internalConsumerClick', uri: uri, name: name, routeId: routeId }); }} + variables={[]} files={this.state.files.map(f => new IntegrationFile(f.name, f.code))} /> }
