This is an automated email from the ASF dual-hosted git repository. scottyaslan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nifi-registry.git
commit 6c4ad5a554535cf7b1f3df942051fe996bcbd979 Author: Bryan Bende <[email protected]> AuthorDate: Mon Apr 29 14:08:14 2019 -0400 NIFIREG-256 Adding icon for tooltip and condensing spacing --- .../sidenav/manage-bucket/nf-registry-manage-bucket.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/sidenav/manage-bucket/nf-registry-manage-bucket.html b/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/sidenav/manage-bucket/nf-registry-manage-bucket.html index ed4b260..514920c 100644 --- a/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/sidenav/manage-bucket/nf-registry-manage-bucket.html +++ b/nifi-registry-core/nifi-registry-web-ui/src/main/webapp/components/administration/workflow/sidenav/manage-bucket/nf-registry-manage-bucket.html @@ -42,7 +42,7 @@ limitations under the License. </button> </div> <div class="pad-top-md pad-bottom-sm pad-left-md pad-right-md"> - <div class="pad-bottom-md"> + <div class="pad-bottom-sm"> <span class="md-card-title">Bundle Settings</span> </div> <div> @@ -50,9 +50,8 @@ limitations under the License. [disabled]="!nfRegistryService.currentUser.resourcePermissions.buckets.canWrite" [(checked)]="nfRegistryService.bucket.allowBundleRedeploy" [(ngModel)]="allowBundleRedeploy" - (change)="toggleBucketBundleRedeploy($event)" - matTooltip="Allows released bundles in this bucket to be overwritten"> - Allow bundle overwrite + (change)="toggleBucketBundleRedeploy($event)"> + Allow bundle overwrite<i matTooltip="Allows released bundles in this bucket to be overwritten" class="pad-left-sm fa fa-question-circle-o help-icon"></i> </mat-checkbox> </div> </div> @@ -137,12 +136,14 @@ limitations under the License. </div> </div> <div class="pad-top-md pad-bottom-sm pad-left-md pad-right-md"> - <div class="pad-bottom-md"> + <div class="pad-bottom-sm"> <span class="md-card-title">About</span> </div> <div> <span class="field-header">Bucket Identifier</span> - <p class="ellipsis" matTooltip="{{nfRegistryService.bucket.identifier}}">{{nfRegistryService.bucket.identifier}}</p> + <div> + <span class="ellipsis" matTooltip="{{nfRegistryService.bucket.identifier}}">{{nfRegistryService.bucket.identifier}}</span> + </div> </div> </div> </div>
