diff --git a/packages/common/src/lib/panel/panel.component.html b/packages/common/src/lib/panel/panel.component.html index b242aabf5f..f02bfd69ef 100644 --- a/packages/common/src/lib/panel/panel.component.html +++ b/packages/common/src/lib/panel/panel.component.html @@ -1,4 +1,4 @@ -
+

diff --git a/packages/common/src/lib/panel/panel.component.scss b/packages/common/src/lib/panel/panel.component.scss index 1a8bc6de1e..7e8ecacb66 100644 --- a/packages/common/src/lib/panel/panel.component.scss +++ b/packages/common/src/lib/panel/panel.component.scss @@ -29,6 +29,10 @@ overflow: auto; } +.igo-cursor-pointer { + cursor: pointer; +} + :host.igo-panel-with-header { .igo-panel-content { height: calc(100% - #{$igo-panel-header-height}); diff --git a/packages/common/src/lib/panel/panel.component.ts b/packages/common/src/lib/panel/panel.component.ts index a3cf7f7042..a20dc45d45 100644 --- a/packages/common/src/lib/panel/panel.component.ts +++ b/packages/common/src/lib/panel/panel.component.ts @@ -12,14 +12,7 @@ import { changeDetection: ChangeDetectionStrategy.OnPush }) export class PanelComponent { - @Input() - get title() { - return this._title; - } - set title(value: string) { - this._title = value; - } - private _title: string; + @Input() title: string; @Input() @HostBinding('class.igo-panel-with-header') @@ -30,4 +23,6 @@ export class PanelComponent { this._withHeader = value; } private _withHeader = true; + + @Input() cursorPointer: boolean = false; } diff --git a/packages/integration/src/lib/search/search-results-tool/search-results-tool.component.html b/packages/integration/src/lib/search/search-results-tool/search-results-tool.component.html index 6c5020e0f1..af8357707c 100644 --- a/packages/integration/src/lib/search/search-results-tool/search-results-tool.component.html +++ b/packages/integration/src/lib/search/search-results-tool/search-results-tool.component.html @@ -41,7 +41,7 @@

{{ 'igo.integration.searchResultsTool.noResults' | translate }}
- +