summaryrefslogtreecommitdiff
path: root/frontend/src/components/document/nodes/StepLogFeed.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/document/nodes/StepLogFeed.tsx')
-rw-r--r--frontend/src/components/document/nodes/StepLogFeed.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/document/nodes/StepLogFeed.tsx b/frontend/src/components/document/nodes/StepLogFeed.tsx
index 0357de8..2f2f553 100644
--- a/frontend/src/components/document/nodes/StepLogFeed.tsx
+++ b/frontend/src/components/document/nodes/StepLogFeed.tsx
@@ -211,7 +211,7 @@ export function StepLogFeed({ taskId, stepName, stepStatus, onCollapse }: StepLo
<button
className="step-log-feed-interrupt-btn"
onClick={handleInterrupt}
- title="Interrupt this task"
+ title="Interrupt this contract"
>
&#x23F9; Interrupt
</button>
@@ -256,7 +256,7 @@ export function StepLogFeed({ taskId, stepName, stepStatus, onCollapse }: StepLo
ref={inputRef}
type="text"
className="step-log-feed-input-field"
- placeholder="Send a message to this task..."
+ placeholder="Send a message to this contract..."
value={message}
onChange={(e) => setMessage(e.target.value)}
onKeyDown={handleKeyDown}