67 lines
1.6 KiB
Plaintext
67 lines
1.6 KiB
Plaintext
nickname action added : complete
|
|
nickname action dispatch test: complete
|
|
buddy nickname change confirm: complete
|
|
edit inline dialog component
|
|
- positionX, positionY, title,
|
|
- text, confirm
|
|
-
|
|
|
|
buddy manage dialog
|
|
profile list item
|
|
- data
|
|
- check box
|
|
- select list : userInfo
|
|
|
|
- action
|
|
- all checkbox
|
|
- remove
|
|
선택 유저 삭제
|
|
삭제 알림 문구 출력
|
|
선택 유저 X
|
|
알림 문구 출력
|
|
선택 유저 O
|
|
삭제 디스패치
|
|
- copy
|
|
새로운 그룹명, 그룹 선택, 선택 멤버 목록
|
|
action
|
|
취소
|
|
전 단계 이동
|
|
그룹 이동 완료
|
|
data 유효성 체크
|
|
dispatch
|
|
- move
|
|
새로운 그룹명, 그룹 선택, 선택 멤버 목록
|
|
action
|
|
취소
|
|
전 단계 이동
|
|
그룹 이동 완료
|
|
data 유효성 체크
|
|
dispatch
|
|
- add
|
|
select user component
|
|
action
|
|
취소
|
|
전 단계 이동
|
|
완료
|
|
data 유효성 체크
|
|
현재 그룹 업데이트 (effect user seq) filter, findIndex 체크 필수
|
|
|
|
|
|
|
|
ng-container
|
|
idx stepper move
|
|
|
|
|
|
|
|
profile list item mouseover button event bug fix
|
|
|
|
1. group buddy remove
|
|
|
|
const userSeq = 737237 as any;
|
|
|
|
const idx = buddies.findIndex((b) => b.seq === userSeq);
|
|
|
|
const userSeq = '737237' as any;
|
|
|
|
const idx = buddies.findIndex((b) => b.seq === Number(userSeq));
|