Skip to content

Commit 2763081

Browse files
committed
fix: frontend
1 parent e9113e7 commit 2763081

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@
2828
<div class="my-input-container">
2929
<div class="my-textarea">
3030
<mat-form-field class="example-full-width">
31-
<mat-label>Query about books or movies</mat-label>
32-
<textarea matInput placeholder="Ask about books or movies." [(ngModel)]="query"></textarea>
31+
<mat-label i18n="@@mcpSearchQueryHeading">Query about books or movies</mat-label>
32+
<textarea matInput i18n-placeholder="@@mcpSearchQueryPlaceholder" placeholder="Ask about books or movies." [(ngModel)]="query" name="query"></textarea>
3333
</mat-form-field>
3434
</div>
3535
<div class="my-button">
36-
<button matButton="filled" type="submit">Basic</button>
36+
<button matButton="filled" type="submit" i18n="@@search">Search</button>
3737
</div>
3838
</div>
3939
</form>
4040
<div>
41-
<h2 i18n="@@responseHeading">Response</h2>
42-
{{ response}}
41+
<h3 i18n="@@responseHeading">Response</h3>
42+
{{ response }}
4343
</div>

mcp-server/src/main/resources/application.properties

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
# spring.main.web-application-type=none
2-
31
# NOTE: You must disable the banner and the console logging
42
# to allow the STDIO transport to work !!!
5-
spring.main.banner-mode=off
3+
#spring.main.banner-mode=off
64
# logging.pattern.console=
75
server.port=8081
86
#spring.main.web-application-type=none

0 commit comments

Comments
 (0)