Update DeleteDocStoreDialog.jsx - added clarification that data will also be removed from the record manager. (#3987)

Added clarification that data will also be removed from the record manager.

Before: 
"Remove data from vector store"

After:
"Remove data from vector store and record manager"

Note: this dialog box only appears when a record manager exists in the doc store. If it's intended to be shown regardless of whether a record manager exists, updates will be needed.
This commit is contained in:
saatchi-david 2025-02-06 18:05:21 +09:00 committed by GitHub
parent aeb82c2fb4
commit 8e2e790a93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ const DeleteDocStoreDialog = ({ show, dialogProps, onCancel, onDelete }) => {
{dialogProps.type === 'STORE' && dialogProps.recordManagerConfig && (
<FormControlLabel
control={<Checkbox checked={removeFromVS} onChange={(event) => setRemoveFromVS(event.target.checked)} />}
label='Remove data from vector store'
label='Remove data from vector store and record manager'
/>
)}
{removeFromVS && (