You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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)
letconfirmResult=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');
303
+
confirmResult.subscribe(()=>{
304
+
this.entitiesService.deleteEntity(entity);
305
+
},()=>{});
303
306
},()=>{});
304
307
}
305
308
@@ -353,9 +356,28 @@ export class EntityModelerComponent implements AfterViewChecked {
353
356
this.saveUiState();
354
357
}
355
358
359
+
/**
360
+
* Adjust entity container coordinates based on number of entities already in UI
361
+
* @param {Entity} entity
362
+
*/
363
+
adjustCoords(entity: Entity){
364
+
entity.hubUi.x+=20*this.entities.length;
365
+
entity.hubUi.y+=30*this.entities.length;
366
+
}
367
+
368
+
/**
369
+
* Adjust entity container size based on its number of properties
@@ -165,7 +165,7 @@ <h3>Choose Your Project Environment</h3>
165
165
166
166
<pclass="help-text">Each Hub Project can be deployed to multiple environments. Environments are
167
167
determined by the presence of a gradle-env.properties file in your hub project
168
-
directory. By default the Quick Start only creates a local environment file.
168
+
directory. By default QuickStart only creates a local environment file.
169
169
Read more <atarget="_blank" href="https://github.com/marklogic/marklogic-data-hub/wiki/Data-Hub-QuickStart-Project-Environments">on the Data Hub Framework Wiki</a>.
0 commit comments