diff --git a/ui/src/app/shared/directive/info-label.directive.spec.ts b/ui/src/app/shared/directive/info-label.directive.spec.ts
deleted file mode 100644
index e1e6d5b59..000000000
--- a/ui/src/app/shared/directive/info-label.directive.spec.ts
+++ /dev/null
@@ -1,60 +0,0 @@
-import { Component, DebugElement, ElementRef } from '@angular/core';
-import { By } from '@angular/platform-browser';
-import { TestBed, ComponentFixture } from '@angular/core/testing';
-import { NoopAnimationsModule } from '@angular/platform-browser/animations';
-import { NgbPopover, NgbPopoverModule, NgbPopoverConfig } from '@ng-bootstrap/ng-bootstrap';
-
-import { InfoLabelDirective } from './info-label.directive';
-import * as utility from '../../../testing/utility';
-
-
-@Component({
- template: ``
-})
-class TestComponent {
- tooltipName = 'Foobar!';
-}
-
-describe('Info Label Directive', () => {
- let component: TestComponent;
- let fixture: ComponentFixture;
- let element: DebugElement;
- let config: NgbPopover;
-
- beforeEach(() => {
- TestBed.configureTestingModule({
- providers: [NgbPopover, NgbPopoverConfig],
- imports: [
- NgbPopoverModule
- ],
- declarations: [
- InfoLabelDirective,
- TestComponent
- ],
- });
-
- fixture = TestBed.createComponent(TestComponent);
- element = fixture.debugElement.query(By.css('i.info-icon'));
- config = element.injector.get(NgbPopover);
- fixture.detectChanges();
- });
-
- describe('functions', () => {
- it('should compile', () => {
- expect(element).toBeDefined();
- });
- it('should call the config open method when spacebar is pressed', () => {
- spyOn(config, 'open');
- utility.dispatchKeyboardEvent(element.nativeElement, 'keydown', 'space');
- fixture.detectChanges();
- expect(config.open).toHaveBeenCalled();
- });
- it('should call the config close method when spacebar is released', () => {
- spyOn(config, 'close');
- utility.dispatchKeyboardEvent(element.nativeElement, 'keyup', 'space');
- fixture.detectChanges();
- expect(config.close).toHaveBeenCalled();
- });
- });
-});
diff --git a/ui/src/app/shared/directive/info-label.directive.ts b/ui/src/app/shared/directive/info-label.directive.ts
deleted file mode 100644
index 893bd139d..000000000
--- a/ui/src/app/shared/directive/info-label.directive.ts
+++ /dev/null
@@ -1,25 +0,0 @@
-import { Directive, ElementRef, Input, HostListener } from '@angular/core';
-import { NgbPopover } from '@ng-bootstrap/ng-bootstrap';
-
-/* tslint:disable:directive-selector */
-@Directive({
- selector: '.info-icon',
- providers: [NgbPopover]
-})
-export class InfoLabelDirective {
- @HostListener('keydown.space') onSpaceDown() {
- this.config.open();
- }
- @HostListener('keyup.space') onSpaceUp() {
- this.config.close();
- }
- constructor(
- private config: NgbPopover,
- private element: ElementRef
- ) {
- config.triggers = 'mouseenter:mouseleave';
- config.placement = ['top', 'left'];
- config.container = 'body';
- element.nativeElement.setAttribute('tabindex', 0);
- }
-}
diff --git a/ui/src/app/shared/shared.module.ts b/ui/src/app/shared/shared.module.ts
index 20792a8aa..e033083a0 100644
--- a/ui/src/app/shared/shared.module.ts
+++ b/ui/src/app/shared/shared.module.ts
@@ -6,7 +6,6 @@ import { AutoCompleteComponent } from './autocomplete/autocomplete.component';
import { ValidationClassDirective } from './validation/validation-class.directive';
import { InputDefaultsDirective } from './directive/input-defaults.directive';
import { ValidFormIconComponent } from './component/valid-form-icon.component';
-import { InfoLabelDirective } from './directive/info-label.directive';
import { PrettyXml } from './pipe/pretty-xml.pipe';
import { ToggleSwitchComponent } from './switch/switch.component';
import { ContenteditableDirective } from './contenteditable/contenteditable.directive';
@@ -31,7 +30,6 @@ import { NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
ValidationClassDirective,
InputDefaultsDirective,
ValidFormIconComponent,
- InfoLabelDirective,
PrettyXml,
ReplacePipe,
CustomDatePipe,
@@ -48,7 +46,6 @@ import { NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
InputDefaultsDirective,
ValidFormIconComponent,
ValidationClassDirective,
- InfoLabelDirective,
ContenteditableDirective,
ReplacePipe,
CustomDatePipe,