We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fde9fe commit 65c9855Copy full SHA for 65c9855
src/components/SecurityPanel.tsx
@@ -1507,7 +1507,7 @@ const SecurityPanel: React.FC = () => {
1507
1508
const showPromptDetail = (prompt: any) => {
1509
Modal.info({
1510
- title: `${t.security.promptSecurityAnalysis}: ${prompt.promptName}`,
+ title: `${t.security.promptSecurityAnalysis}: ${prompt.name}`,
1511
width: 900,
1512
content: (
1513
<div>
@@ -3014,7 +3014,7 @@ const SecurityPanel: React.FC = () => {
3014
key: 'promptName',
3015
render: (name: string, record: any) => (
3016
<Space>
3017
- <span>{name}</span>
+ <span>{record.name}</span>
3018
{record.scanType === 'passive' ? (
3019
<Tag color="blue">{t.security.history.passiveDetection}</Tag>
3020
) : (
0 commit comments