Skip to content

Commit

Permalink
Merge pull request #10493 from nextcloud/backport/10476/stable27
Browse files Browse the repository at this point in the history
[stable27] techdebt(ParticipantsTab) - refactor participants list
  • Loading branch information
Antreesy authored Sep 13, 2023
2 parents a58b2d7 + d2ea87f commit 6689633
Show file tree
Hide file tree
Showing 8 changed files with 302 additions and 324 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ import ParticipantPermissionsEditor from './ParticipantPermissionsEditor/Partici
import { useIsInCall } from '../../../../../composables/useIsInCall.js'
import { CONVERSATION, PARTICIPANT, ATTENDEE } from '../../../../../constants.js'
import readableNumber from '../../../../../mixins/readableNumber.js'
import UserStatus from '../../../../../mixins/userStatus.js'
import { formattedTime } from '../../../../../utils/formattedTime.js'
import { getStatusMessage } from '../../../../../utils/userStatus.js'

export default {
name: 'Participant',
Expand Down Expand Up @@ -271,7 +271,6 @@ export default {
},

mixins: [
UserStatus,
readableNumber,
],

Expand Down Expand Up @@ -360,7 +359,7 @@ export default {
? '💬 ' + t('spreed', '{time} talking …', { time: formattedTime(this.timeSpeaking, true) })
: '💬 ' + t('spreed', '{time} talking time', { time: formattedTime(this.timeSpeaking, true) })
} else {
return this.getStatusMessage(this.participant)
return getStatusMessage(this.participant)
}
},

Expand Down
Loading

0 comments on commit 6689633

Please sign in to comment.