Skip to content

Commit 706d1c5

Browse files
authored
fix: some styling issues (#652)
1 parent 9c8510c commit 706d1c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

projects/common/src/utilities/formatters/time/display-time-ago.pipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class DisplayTimeAgo implements PipeTransform {
1616
private readonly dateCoercer: DateCoercer = new DateCoercer();
1717

1818
public transform(value?: DateOrMillis | null): string {
19-
if (value === null || value === undefined) {
19+
if (value === null || value === undefined || value === 0) {
2020
return '-';
2121
}
2222

projects/components/src/select/select.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
display: flex;
1818
align-items: center;
1919
width: 100%;
20-
height: 34px;
20+
height: 36px;
2121

2222
&.small {
2323
height: 32px;

projects/components/src/table/controls/table-controls.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
display: flex;
1616

1717
.search-box {
18-
width: 256px;
18+
min-width: 256px;
1919
}
2020
}
2121

0 commit comments

Comments
 (0)