Repository: nifi-registry Updated Branches: refs/heads/master d387a321a -> b008137d8
NIFIREG-99 - Add refresh button to an items change log in the explorer grid-list This closes #80. Signed-off-by: Bryan Bende <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi-registry/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi-registry/commit/b008137d Tree: http://git-wip-us.apache.org/repos/asf/nifi-registry/tree/b008137d Diff: http://git-wip-us.apache.org/repos/asf/nifi-registry/diff/b008137d Branch: refs/heads/master Commit: b008137d8e667e1b3a21bb7f8144c1f60991789a Parents: d387a32 Author: Scott Aslan <[email protected]> Authored: Mon Jan 8 15:52:57 2018 -0500 Committer: Bryan Bende <[email protected]> Committed: Wed Jan 10 14:08:41 2018 -0500 ---------------------------------------------------------------------- .../grid-list/registry/nf-registry-grid-list-viewer.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi-registry/blob/b008137d/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.html ---------------------------------------------------------------------- diff --git a/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.html b/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.html index 7d38992..65f90fe 100644 --- a/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.html +++ b/nifi-registry-web-ui/src/main/webapp/components/explorer/grid-list/registry/nf-registry-grid-list-viewer.html @@ -57,7 +57,7 @@ limitations under the License. </ng-template> <div id="nifi-registry-explorer-grid-list-viewer-droplet-container-details" class="mat-padding"> <div fxLayout="column" fxLayoutAlign="space-between stretch"> - <div class="pad-bottom-sm" fxLayout="row" fxLayoutAlign="end center"> + <div fxLayout="row" fxLayoutAlign="end center"> <button color="fds-primary" [matMenuTriggerFor]="primaryButtonDropdownMenu" mat-raised-button> Actions<i class="fa fa-caret-down" aria-hidden="true"></i> </button> @@ -71,11 +71,14 @@ limitations under the License. </mat-menu> </div> <div fxLayout="row"> - <div fxFlex="25" class="pad-left-sm"> + <div fxFlex="25" class="pad-left-sm pad-top-sm"> <span class="uppercase">Description</span> </div> <div fxFlex="75"> <span class="uppercase">Change Log</span> + <button (click)="nfRegistryService.getDropletSnapshotMetadata(droplet)" matTooltip="Refresh" mat-icon-button> + <i class="fa fa-refresh info" aria-hidden="true"></i> + </button> </div> </div> <div fxLayout="row" class="pad-left-sm">
