summaryrefslogtreecommitdiff
path: root/extension/react-app/src/components/PillButton.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-06 12:39:17 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-06 12:39:17 -0700
commita6935256795ccb63d8cbd4e0677d117efd4c6d9d (patch)
tree308c31354a094bcda4e14c9e304c7c1b2116ebfb /extension/react-app/src/components/PillButton.tsx
parent28e4da39c1f7056b99dca89e6959a11b86202886 (diff)
downloadsncontinue-a6935256795ccb63d8cbd4e0677d117efd4c6d9d.tar.gz
sncontinue-a6935256795ccb63d8cbd4e0677d117efd4c6d9d.tar.bz2
sncontinue-a6935256795ccb63d8cbd4e0677d117efd4c6d9d.zip
details
Diffstat (limited to 'extension/react-app/src/components/PillButton.tsx')
-rw-r--r--extension/react-app/src/components/PillButton.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/extension/react-app/src/components/PillButton.tsx b/extension/react-app/src/components/PillButton.tsx
index a384832e..31d98c0f 100644
--- a/extension/react-app/src/components/PillButton.tsx
+++ b/extension/react-app/src/components/PillButton.tsx
@@ -127,7 +127,9 @@ const PillButton = (props: PillButtonProps) => {
{props.title}
</Button>
<StyledTooltip id={`edit-${props.index}`}>
- {props.editing ? "Editing this range" : "Edit this range"}
+ {props.editing
+ ? "Editing this range (with rest of file as context)"
+ : "Edit this range"}
</StyledTooltip>
<StyledTooltip id={`delete-${props.index}`}>Delete</StyledTooltip>
</>