diff --git a/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.html b/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.html
index e8da415c6b..c5192c3600 100644
--- a/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.html
+++ b/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.html
@@ -3,6 +3,7 @@
[class.has-custom-icon]="!!iconShape"
class="entry"
[class.last]="isLast === true"
+ [class.first]="isFirst === true"
[class.collapsed]="collapsed"
>
diff --git a/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.scss b/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.scss
index a0901669c5..66ba7d4b17 100644
--- a/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.scss
+++ b/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.scss
@@ -2,24 +2,24 @@
:host {
display: block;
+}
- &:first-of-type {
- .timeline {
- &:before {
- border-left-color: var(--color-weight-200);
- }
+.first {
+ .timeline {
+ &:before {
+ border-left-color: var(--color-weight-200);
}
+ }
- .entry-body {
- max-height: initial;
- @media screen and (min-width: $breakpoint-small) {
- flex-direction: column;
- }
- }
- .featured-entry {
- width: 100%;
+ .entry-body {
+ max-height: initial;
+ @media screen and (min-width: $breakpoint-small) {
+ flex-direction: column;
}
}
+ .featured-entry {
+ width: 100%;
+ }
}
.entry {
diff --git a/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.ts b/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.ts
index 1ab92695f9..a946d33b12 100644
--- a/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.ts
+++ b/packages/admin-ui/src/lib/core/src/shared/components/timeline-entry/timeline-entry.component.ts
@@ -23,6 +23,7 @@ export class TimelineEntryComponent {
@Input() name: string;
@Input() featured: boolean;
@Input() iconShape?: string | [string, string];
+ @Input() isFirst?: boolean;
@Input() isLast?: boolean;
@HostBinding('class.collapsed')
@Input()
diff --git a/packages/admin-ui/src/lib/customer/src/components/customer-history/customer-history.component.html b/packages/admin-ui/src/lib/customer/src/components/customer-history/customer-history.component.html
index c69047d85a..ef216e5935 100644
--- a/packages/admin-ui/src/lib/customer/src/components/customer-history/customer-history.component.html
+++ b/packages/admin-ui/src/lib/customer/src/components/customer-history/customer-history.component.html
@@ -1,5 +1,6 @@
-
+
@@ -118,11 +121,13 @@
{{ 'customer.history-customer-email-update-verified' | translate }}
{{
- entry.data.oldEmailAddress
- }}
+ entry.data.oldEmailAddress
+ }}
+
{{
- entry.data.newEmailAddress
- }}
+ entry.data.newEmailAddress
+ }}
+
diff --git a/packages/admin-ui/src/lib/order/src/components/order-history/order-history.component.html b/packages/admin-ui/src/lib/order/src/components/order-history/order-history.component.html
index 6fb2be08eb..542f287d90 100644
--- a/packages/admin-ui/src/lib/order/src/components/order-history/order-history.component.html
+++ b/packages/admin-ui/src/lib/order/src/components/order-history/order-history.component.html
@@ -1,5 +1,5 @@