-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from Ontotext-AD/gdb-3906
GDB-3906: Add "force drop" to the connector manager in the workbench
- Loading branch information
Showing
4 changed files
with
63 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/js/angular/externalsync/templates/deleteConnector.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<div class="modal-header"> | ||
<button type="button" class="close" ng-click="cancel()"></button> | ||
<h3 class="modal-title">Confirm delete</h3> | ||
</div> | ||
<div class="modal-body"> | ||
<p>Are you sure you want to delete this connector?</p> | ||
<span popover="Force delete will remove the connector even if part of the operation fails. Use it if normal delete does not work.{{ isExternal ? (' Note that you may have to drop the index manually from ' + type + '.') : '' }}" | ||
popover-trigger="mouseenter" | ||
popover-placement="bottom"> | ||
<input id="force-delete" type="checkbox" ng-model="force"><label for="force-delete"> Force delete</label> | ||
</span> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-secondary" ng-click="cancel()">Cancel</button> | ||
<button type="submit" class="btn btn-primary delete-connector-btn" ng-click="ok()">Delete</button> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters