Skip to content

Commit 364b012

Browse files
Merge branch 'cbrelease-4.8.21' of https://github.com/KB-iGOT/sunbird-cb-adminportal into cios-via-api
2 parents cac36b2 + 55db521 commit 364b012

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

project/ws/app/src/lib/routes/create-mdo/routes/designation/components/bulk-upload/bulk-upload.component.html

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,37 +64,41 @@
6464
{{ list?.status !== 'SUCCESSFUL' ? 'Download error log' : 'Download file' }}
6565
</div>
6666
</div>
67-
<div class="grid grid-flow-row sm:grid-flow-col gap-10 grid-col grid-container-25">
68-
<div class="flex flex-col">
67+
<div class="flex flex-wrap">
68+
<div class="flex flex-col w-full box">
6969
<div class="label">Name</div>
7070
<div class="value">{{ list?.fileName }}</div>
7171
</div>
72-
<div class="flex flex-col">
72+
<div class="flex flex-col w-full box">
7373
<div class="label">Status</div>
7474
<div class="value">{{ list?.status }}</div>
7575
</div>
76-
<div class="flex flex-col">
76+
<div class="flex flex-col w-full box">
7777
<div class="label">Failed Records</div>
7878
<div class="value">{{ list?.failedRecordsCount }}</div>
7979
</div>
80-
<div class="flex flex-col">
80+
<div class="flex flex-col w-full box">
8181
<div class="label">Success Records</div>
8282
<div class="value">{{ list?.successfulRecordsCount }}</div>
8383
</div>
8484
</div>
85-
<div class="grid grid-flow-row sm:grid-flow-col gap-10 grid-col grid-container-25">
86-
<div class="flex flex-col">
85+
<div class="flex flex-wrap">
86+
<div class="flex flex-col w-full box">
8787
<div class="label">Total Records</div>
8888
<div class="value">{{ list?.totalRecords }}</div>
8989
</div>
90-
<div class="flex flex-col">
90+
<div class="flex flex-col w-full box">
9191
<div class="label">Initiated On</div>
9292
<div class="value">{{ list?.dateCreatedOn | date: 'dd MMM yyyy h:mm a' }}</div>
9393
</div>
94-
<div class="flex flex-col">
94+
<div class="flex flex-col w-full box">
9595
<div class="label">Completed On</div>
9696
<div class="value">{{ list?.dateUpdatedOn | date: 'dd MMM yyyy h:mm a' }}</div>
9797
</div>
98+
<div class="flex flex-col w-full box">
99+
<div class="label">Uploaded By</div>
100+
<div class="value">{{ list?.userDetails?.firstName }}</div>
101+
</div>
98102
</div>
99103
</div>
100104
</div>

project/ws/app/src/lib/routes/create-mdo/routes/designation/components/bulk-upload/bulk-upload.component.scss

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
line-height: 18px;
1616
color: rgba($color: #000000, $alpha: 0.88);
1717
word-break: break-all;
18+
width: 95%;
1819
}
1920

2021
.outline-button {
@@ -76,6 +77,11 @@
7677
}
7778
}
7879

80+
.box {
81+
flex: 1 1 calc(25% - 10px);
82+
box-sizing: border-box;
83+
}
84+
7985
@media screen and (max-width: 641px) {
8086
::ng-deep .common-modal, ::ng-deep .progress-modal {
8187
max-width: 90vw !important;

0 commit comments

Comments
 (0)