소스 검색

Prevent your own status from replacing another user's status

Signed-off-by: Christopher Ng <chrng8@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
tags/v24.0.0beta1
Christopher Ng 2 년 전
부모
커밋
3aea0f2c19
3개의 변경된 파일11개의 추가작업 그리고 9개의 파일을 삭제
  1. 7
    7
      core/js/dist/profile.js
  2. 1
    1
      core/js/dist/profile.js.map
  3. 3
    1
      core/src/views/Profile.vue

+ 7
- 7
core/js/dist/profile.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 1
core/js/dist/profile.js.map
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 3
- 1
core/src/views/Profile.vue 파일 보기

@@ -273,7 +273,9 @@ export default {

methods: {
handleStatusUpdate(status) {
this.status = status
if (this.isCurrentUser && status.userId === this.userId) {
this.status = status
}
},

openStatusModal() {

Loading…
취소
저장