Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
8f5c860
fix(meetings): fixed meetings small issues
nsemets Aug 26, 2025
8de9aef
fix(tooltips): added tooltips
nsemets Aug 27, 2025
516655f
Merge remote-tracking branch 'origin/main' into fix/tooltips
nsemets Aug 27, 2025
193a0b5
fix(table): updated sorting
nsemets Aug 28, 2025
35212d5
fix(settings): fixed update project
nsemets Aug 28, 2025
1cf324e
fix(bookmarks): updated bookmarks
nsemets Aug 28, 2025
6d76abc
fix(my-registrations): fixed my registrations
nsemets Aug 28, 2025
fc5c303
fix(developer-apps): fixed developer apps
nsemets Aug 28, 2025
2bf55dd
fix(settings): updated tokens and notifications
nsemets Aug 28, 2025
78a26e2
fix(translation): removed dot
nsemets Aug 28, 2025
3d65a7e
Merge remote-tracking branch 'origin/main' into fix/table-sorting
nsemets Aug 28, 2025
4112bea
fix(info-icon): updated info icon translate
nsemets Aug 28, 2025
72d5703
fix(profile-settings): fixed profile settings
nsemets Aug 28, 2025
72ac75d
fix(test): updated tests
nsemets Aug 28, 2025
7324a40
Merge branch 'fix/table-sorting' into fix/improvements
nsemets Aug 28, 2025
6392c7b
fix(settings): updated settings
nsemets Aug 31, 2025
269a864
fix(user-emails): updated adding emails to user account
nsemets Sep 1, 2025
924baa0
fix(tests): updated tests
nsemets Sep 1, 2025
b8aac51
Merge remote-tracking branch 'origin/main' into fix/improvements
nsemets Sep 1, 2025
bf23db4
fix(clean-up): clean up
Nazar690 Sep 1, 2025
cd7ab91
Merge remote-tracking branch 'origin/main' into fix/improvements
nsemets Sep 1, 2025
64f92f4
Merge remote-tracking branch 'origin/fix/clean-up' into fix/improvements
nsemets Sep 1, 2025
569f5d7
fix(models): updated models
nsemets Sep 1, 2025
1929104
fix(models): updated region and license models
nsemets Sep 1, 2025
a62b376
Merge remote-tracking branch 'origin/main' into fix/improvements
nsemets Sep 2, 2025
ff31520
fix(styles): moved styles from assets
nsemets Sep 2, 2025
0da2aac
Merge remote-tracking branch 'origin/main' into fix/improvements
nsemets Sep 2, 2025
e93ff98
fix(test): fixed institution loading and test for view only link
nsemets Sep 2, 2025
4022bf1
fix(analytics): added check if is public
nsemets Sep 2, 2025
5b0ca69
fix(analytics): updated analytics feature
nsemets Sep 2, 2025
95087c7
fix(analytics): show message when data loaded
nsemets Sep 2, 2025
9570fe9
Merge remote-tracking branch 'origin/main' into fix/improvements
nsemets Sep 2, 2025
41be7e3
fix(view-only-links): updated view only links
nsemets Sep 3, 2025
392080a
fix(view only links): added shared components
nsemets Sep 3, 2025
bfa79bb
fix(tests): fixed tests
nsemets Sep 3, 2025
fa56c65
fix(unit-tests): updated jest config
nsemets Sep 3, 2025
c0d5938
Merge remote-tracking branch 'origin/main' into fix/improvements
nsemets Sep 3, 2025
fffd1ab
fix(view-only-links): update view only links for components
nsemets Sep 3, 2025
3dd4150
Merge remote-tracking branch 'origin/main' into fix/improvements
nsemets Sep 4, 2025
87b3cbb
fix(create-view-link): added logic for uncheck
nsemets Sep 4, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(info-icon): updated info icon translate
  • Loading branch information
nsemets committed Aug 28, 2025
commit 4112bea6350f65e863443de1d19d83d93dba4dc4
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="flex align-items-baseline gap-1">
<h3>{{ 'collections.addToCollection.projectContributors' | translate }}</h3>
<osf-info-icon
[tooltipText]="'collections.addToCollection.contributorsTooltip' | translate"
[tooltipText]="'collections.addToCollection.contributorsTooltip'"
tooltipPosition="bottom"
></osf-info-icon>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h2>{{ 'files.detail.revisions.title' | translate }}</h2>
></osf-copy-button>

<osf-info-icon
[tooltipText]="'files.detail.revisions.tooltips.md5' | translate"
[tooltipText]="'files.detail.revisions.tooltips.md5'"
tooltipPosition="left"
></osf-info-icon>
</li>
Expand All @@ -36,7 +36,7 @@ <h2>{{ 'files.detail.revisions.title' | translate }}</h2>
></osf-copy-button>

<osf-info-icon
[tooltipText]="'files.detail.revisions.tooltips.sha2' | translate"
[tooltipText]="'files.detail.revisions.tooltips.sha2'"
tooltipPosition="left"
></osf-info-icon>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ <h2>{{ 'settings.notifications.emailPreferences.title' | translate }}</h2>
<h2>{{ 'settings.notifications.notificationPreferences.title' | translate }}</h2>

<osf-info-icon
[tooltipText]="'settings.notifications.notificationPreferences.tooltipText' | translate"
[tooltipText]="'settings.notifications.notificationPreferences.tooltipText'"
tooltipPosition="bottom"
></osf-info-icon>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<i
class="fas fa-info-circle blue-icon cursor-pointer"
[pTooltip]="tooltipText()"
[pTooltip]="tooltipText() | translate"
[tooltipPosition]="tooltipPosition()"
></i>
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import { TranslatePipe } from '@ngx-translate/core';
import { MockPipe } from 'ng-mocks';

import { ComponentRef } from '@angular/core';
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
Expand All @@ -13,7 +16,7 @@ describe('InfoIconComponent', () => {

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [InfoIconComponent],
imports: [InfoIconComponent, MockPipe(TranslatePipe)],
}).compileComponents();

fixture = TestBed.createComponent(InfoIconComponent);
Expand Down
4 changes: 3 additions & 1 deletion src/app/shared/components/info-icon/info-icon.component.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { TranslatePipe } from '@ngx-translate/core';

import { Tooltip } from 'primeng/tooltip';

import { ChangeDetectionStrategy, Component, input } from '@angular/core';
Expand All @@ -6,7 +8,7 @@ import { TooltipPosition } from '@osf/shared/models';

@Component({
selector: 'osf-info-icon',
imports: [Tooltip],
imports: [Tooltip, TranslatePipe],
templateUrl: './info-icon.component.html',
styleUrl: './info-icon.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
Expand Down