Skip to content

Commit 0630335

Browse files
authored
[ENG-10831] Profile: Expand buttons are too close to each other (CenterForOpenScience#958)
- Ticket: https://openscience.atlassian.net/browse/ENG-10831 - Feature flag: n/a ## Summary of Changes 1. Fixed translations. 2. Fixed gap between buttons in profile.
1 parent 747ca7c commit 0630335

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/app/features/registries/components/registries-metadata-step/registries-license/registries-license.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p-card class="w-full card mt-4" (focusout)="onFocusOut()">
2-
<h2 class="mb-2">{{ 'shared.license.title' | translate }}</h2>
2+
<h2 class="mb-2">{{ 'common.labels.license' | translate }}</h2>
33

44
<p class="mb-1">{{ 'shared.license.description' | translate }}</p>
55
<p>

src/app/shared/components/education-history/education-history.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<p-accordion class="card-accordion">
1+
<p-accordion class="card-accordion flex flex-column gap-4" [multiple]="true">
22
@for (education of education(); track $index) {
33
<p-accordion-panel value="{{ $index }}" class="accordion-panel">
44
<p-accordion-header>

src/app/shared/components/employment-history/employment-history.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<p-accordion class="card-accordion">
1+
<p-accordion class="card-accordion flex flex-column gap-4" [multiple]="true">
22
@for (employment of employment(); track $index) {
33
<p-accordion-panel [value]="$index">
44
<p-accordion-header>

src/app/shared/components/my-projects-table/my-projects-table.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<p-sortIcon field="title" />
2525
</th>
2626

27-
<th>{{ 'myProjects.table.columns.contributors' | translate }}</th>
27+
<th>{{ 'common.labels.contributors' | translate }}</th>
2828

2929
<th pSortableColumn="dateModified">
3030
{{ 'common.labels.modified' | translate }}

0 commit comments

Comments
 (0)