Skip to content

Commit

Permalink
feat(SFINT-4378) tooltip origin1 (#105)
Browse files Browse the repository at this point in the history
PR comments fix for #103 
(Missed one commit before merging #103 )
  • Loading branch information
erocheleau committed Feb 3, 2022
1 parent 5aee218 commit 075b42e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/UserActions/ClickedDocumentList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import './Strings';
/**
* Initialization options of the **ClickedDocumentList** class.
*/
export interface IClickedDocumentListOptions {
export interface IClickedDocumentList {
/**
* Number of Clicked Documents shown.
*
Expand Down Expand Up @@ -50,7 +50,7 @@ export class ClickedDocumentList extends Component {
/**
* Default initialization options of the **ClickedDocumentList** class.
*/
static readonly options: IClickedDocumentListOptions = {
static readonly options: IClickedDocumentList = {
numberOfItems: ComponentOptions.buildNumberOption({
defaultValue: 3,
min: 1,
Expand Down Expand Up @@ -82,7 +82,7 @@ export class ClickedDocumentList extends Component {
* @param options Initialization options of the component.
* @param bindings Bindings of the Search-UI environment.
*/
constructor(public element: HTMLElement, public options: IClickedDocumentListOptions, public bindings: IComponentBindings) {
constructor(public element: HTMLElement, public options: IClickedDocumentList, public bindings: IComponentBindings) {
super(element, ClickedDocumentList.ID, bindings);

this.options = ComponentOptions.initComponentOptions(element, ClickedDocumentList, options);
Expand Down
2 changes: 1 addition & 1 deletion src/components/UserActions/UserActions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ $clickable-blue: #004990;
top: 100%;
content: '';
left: 1em;
border: 10px solid $clickable-blue;
border: 10px solid;
border-color: $clickable-blue transparent transparent transparent;
}
}
Expand Down

0 comments on commit 075b42e

Please sign in to comment.