1. 대화 전달 > 유저선택 팝업 > 대화리스트로 탭 이동시 user select chips 는 없어지는데 인원수가 안없어지는 문제 수정.
2. 조직도 > 유저 선택 > 그룹에 추가 > 그룹선택 팝업 :: 그룹명 옆에 그룹인원수 명시 >>>> 디자인 수정 필요.
This commit is contained in:
parent
3e11d4e4a2
commit
534e026742
|
@ -182,7 +182,9 @@
|
|||
</mat-chip>
|
||||
</mat-chip-list>
|
||||
</div>
|
||||
<span>{{ selectedUserList.length }}명</span>
|
||||
<span *ngIf="isShowSelectedUserList"
|
||||
>{{ selectedUserList.length }}명</span
|
||||
>
|
||||
</div>
|
||||
</mat-card-content>
|
||||
<mat-card-actions class="button-farm flex-row">
|
||||
|
|
|
@ -40,16 +40,18 @@
|
|||
</mat-form-field>
|
||||
|
||||
<div class="btn-box">
|
||||
<!--<button mat-button (click)="onClickAddGroup(inputGroupName.value)">
|
||||
<mat-icon>add</mat-icon>
|
||||
<button mat-stroked-button (click)="onClickAddGroupCancel()">
|
||||
닫기
|
||||
</button>
|
||||
<button
|
||||
mat-stroked-button
|
||||
color="accent"
|
||||
(click)="onClickAddGroup(inputGroupName.value)"
|
||||
class="mat-accent"
|
||||
>
|
||||
그룹명 추가
|
||||
</button>
|
||||
<button mat-button (click)="onClickAddGroupCancel()">
|
||||
<mat-icon>clear</mat-icon>
|
||||
</button>-->
|
||||
<button mat-stroked-button (click)="onClickAddGroupCancel()">닫기</button>
|
||||
<button mat-stroked-button color="accent" (click)="onClickAddGroup(inputGroupName.value)" class="mat-accent">그룹명 추가</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<mat-selection-list #groups>
|
||||
|
@ -57,7 +59,10 @@
|
|||
*ngFor="let groupBuddy of groupBuddyList$ | async"
|
||||
[value]="groupBuddy.group"
|
||||
>
|
||||
{{ groupBuddy.group.name }}
|
||||
<span class="title-name ellipsis"> {{ groupBuddy.group.name }} </span>
|
||||
<span class="text-accent-color number"
|
||||
>({{ groupBuddy.buddyList.length }}명)</span
|
||||
>
|
||||
</mat-list-option>
|
||||
</mat-selection-list>
|
||||
<!-- <div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user