Skip to content

Commit 559491b

Browse files
authored
Develop (#921)
* DHFPROD-496 fix QuickStart naming in app “QuickStart”, not “Quick Start” * DHFPROD-497 fix property index selection Add flags to property to keep track of what indexes are set (instead of using name). Set flags based on entity state when editor opens. Set entity state based on flags on save. * Fixes #582 - should be reviewed for UX before merging. (#906) * Fix tab bar layout issue #798 (#909) * Rework of fix for issue #557 where URI in request to /doc API (#915) Now matches other implementations throughout codebase which leverage encodeURIComponent() * Fixing Issue #578: Adding deletion dialog (#889) (#917) Adding an additional dialog message to the 2.0 development branch that will require the user to press yes twice before the entity and all associated flows and code are deleted * DHFPROD-664 adjust offset, size of new entities in UI (#918) * Updating Issue #578: Update the deletion message (#919) Removing the double confirmation dialog and updating the deletion message that is displayed to the user to make it clearer to what they are deleting.
1 parent 4395e09 commit 559491b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

quick-start/src/main/ui/app/entity-modeler/entity-modeler.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ export class EntityModelerComponent implements AfterViewChecked {
297297
}
298298

299299
deleteEntity(entity: Entity) {
300-
let result = this.dialogService.confirm(`Really delete ${entity.name}?`, 'No', 'Yes');
300+
let result = this.dialogService.confirm(`Delete the ${entity.name} entity?\n\nAny flows associated with the entity will also be deleted.`, 'No', 'Yes');
301301
result.subscribe(() => {
302302
let confirmResult = this.dialogService.confirm(`Are you sure really want to delete the ${entity.name} entity as it will delete the entity and all associated flows and code?`, 'No', 'Yes');
303303
confirmResult.subscribe(() => {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
/* You can add global styles to this file, and also import other style files */
2+
3+
.mdl-dialog__content {
4+
white-space: pre;
5+
}
6+

0 commit comments

Comments
 (0)