# 이슈처리 247, 253

This commit is contained in:
leejinho 2020-02-14 13:27:28 +09:00
parent 30debd93b7
commit c07d13eae8
3 changed files with 12 additions and 9 deletions

View File

@ -573,7 +573,8 @@ export class OrganizationComponent
data: { data: {
title: this.translateService.instant('organization.selectedUser'), title: this.translateService.instant('organization.selectedUser'),
selectedUserList: this.selectedUserList selectedUserList: this.selectedUserList
} },
restoreFocus: false
}); });
if (!!result && !!result.choice && result.choice) { if (!!result && !!result.choice && result.choice) {

View File

@ -22,13 +22,11 @@
</td> </td>
</ng-container> </ng-container>
<ng-container matColumnDef="regDate"> <ng-container matColumnDef="regDate">
<th mat-header-cell *matHeaderCellDef> <th mat-header-cell *matHeaderCellDef class="regDate">
{{ 'notice.fieldPostDate' | translate }} {{ 'notice.fieldPostDate' | translate }}
</th> </th>
<td mat-cell *matCellDef="let element" class="date"> <td mat-cell *matCellDef="let element" class="date">
<div class="date"> {{ element.regDate }}
{{ element.regDate }}
</div>
</td> </td>
</ng-container> </ng-container>
<tr <tr

View File

@ -38,6 +38,11 @@ $tablet-s-width: 768px;
th.infos { th.infos {
padding: 10px; padding: 10px;
text-align: center; text-align: center;
width: 80%;
}
th.regDate {
padding: 10px;
text-align: center;
} }
tr.mat-row { tr.mat-row {
height: 70px; height: 70px;
@ -59,10 +64,9 @@ $tablet-s-width: 768px;
} }
} }
.date { .date {
.date { text-align: right;
font-size: 0.8em; font-size: 0.8em;
text-align: right; padding-right: 17px;
}
} }
} }
} }