Skip to content

Commit 3b72293

Browse files
committed
feat: add response
1 parent 3c99965 commit 3b72293

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

frontend/src/angular/src/app/mcp-client/mcp-client.component.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,7 @@
3737
</div>
3838
</div>
3939
</form>
40+
<div>
41+
<h2 i18n="@@responseHeading">Response</h2>
42+
{{ response}}
43+
</div>

frontend/src/angular/src/app/mcp-client/mcp-client.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ import { Router } from '@angular/router';
3333
styleUrl: './mcp-client.component.scss'
3434
})
3535
export class McpClientComponent {
36-
protected query: string = '';
36+
protected query = '';
37+
protected response = '';
3738

3839
constructor(private readonly router: Router) {}
3940

0 commit comments

Comments
 (0)