Skip to content

Commit

Permalink
fix(view-manage-role): fix PopConfirm content to title
Browse files Browse the repository at this point in the history
  • Loading branch information
zyhnbyyds committed May 18, 2024
1 parent 77c2023 commit d95bd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/manage/role/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const { columns, columnChecks, data, loading, getData, mobilePagination, searchP
<Button type="primary" ghost size="small" onClick={() => edit(record.id)}>
{$t('common.edit')}
</Button>
<Popconfirm onConfirm={() => handleDelete(record.id)} content={$t('common.confirmDelete')}>
<Popconfirm onConfirm={() => handleDelete(record.id)} title={$t('common.confirmDelete')}>
<Button danger size="small">
{$t('common.delete')}
</Button>
Expand Down

0 comments on commit d95bd84

Please sign in to comment.