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
commit7207da47c790aab81f59e777b9d02769b46fb7f4 (patch)
tree85873f54f238cd9d9be7f64f51484c52a22ef9e1 /extension/react-app/src/components/PillButton.tsx
parent1e00942edec9c9aa4c69f2a8be7e43f06df684df (diff)
downloadsncontinue-7207da47c790aab81f59e777b9d02769b46fb7f4.tar.gz
sncontinue-7207da47c790aab81f59e777b9d02769b46fb7f4.tar.bz2
sncontinue-7207da47c790aab81f59e777b9d02769b46fb7f4.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>
</>