# 이슈처리 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: {
title: this.translateService.instant('organization.selectedUser'),
selectedUserList: this.selectedUserList
}
},
restoreFocus: false
});
if (!!result && !!result.choice && result.choice) {

View File

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

View File

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