Update ejection confirmation text

This commit is contained in:
Andrew Kingston 2022-08-30 14:48:17 +01:00
parent d266d5e542
commit 8b8d3b9078
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@
<ConfirmDialog <ConfirmDialog
bind:this={confirmEjectDialog} bind:this={confirmEjectDialog}
title="Eject block" title="Eject block"
body={`Ejecting a block breaks it down into multiple components. Are you sure you want to eject "${componentToEject?._instanceName}"?`} body={`Ejecting a block breaks it down into multiple components and cannot be undone. Are you sure you want to eject "${componentToEject?._instanceName}"?`}
onOk={() => store.actions.components.requestEjectBlock(componentToEject?._id)} onOk={() => store.actions.components.requestEjectBlock(componentToEject?._id)}
okText="Eject block" okText="Eject block"
/> />