webui: change Monaco editor comment submit button from Submit to Add
Updates the Monaco editor's comment submission button text from 'Submit'
to 'Add' for better consistency with the UI and more concise labeling.
The button functionality remains unchanged - it still submits comments
on selected code sections in the Monaco editor view.
Co-Authored-By: sketch <hello@sketch.dev>
Change-ID: seca3827c274ff3cdk
diff --git a/webui/src/web-components/sketch-monaco-view.ts b/webui/src/web-components/sketch-monaco-view.ts
index 97fce93..c58ac76 100644
--- a/webui/src/web-components/sketch-monaco-view.ts
+++ b/webui/src/web-components/sketch-monaco-view.ts
@@ -441,7 +441,7 @@
Cancel
</button>
<button class="submit-button" @click="${this.submitComment}">
- Submit
+ Add
</button>
</div>
</div>