Skip to content

Commit 3f72ef1

Browse files
committed
Enhance UI by adding overflow hidden to the prompt container and updating button labels for clarity.
1 parent 0664fef commit 3f72ef1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

workshop-ui/src/app/prompt-engineering/page.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
align-items: stretch;
1515
height: 100%;
1616
gap: 20px;
17+
overflow: hidden;
1718

1819
&>* {
1920
flex: 1;

workshop-ui/src/app/prompt-engineering/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,11 +467,11 @@ export default function Home() {
467467
<div className={styles.buttonRow}>
468468
<button className={`${styles.sendButton} ${styles.applyButton}`} onClick={handleSystemPromptApply} disabled={numberOfSystemPromptsApplied >= 100 || !systemPrompt.trim() || isMetaLoading}>
469469
<FileCheck2 />
470-
<span>Get Feedback</span>
470+
<span>Feedback</span>
471471
</button>
472472
<button className={`${styles.sendButton} ${styles.deleteButton}`} onClick={clearChat} disabled={isLoading || messages.length === 0}>
473473
<FileX2 />
474-
<span>Clear Chat</span>
474+
<span>Chat entleeren</span>
475475
</button>
476476
<button className={`${styles.sendButton} ${styles.saveButton}`} onClick={saveSystemPrompt} disabled={saveCooldown > 0}>
477477
<Save />

0 commit comments

Comments
 (0)