Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-07-14 14:30:52 +0300
committerJoas Schilling <coding@schilljs.com>2022-07-14 14:30:52 +0300
commit3d8ad1ca8cf417385c1677005ddb87757f971237 (patch)
tree669c9f1fa3fb7fa903b0548fcb9013a22108cca1 /src
parent87a9b07d911c33a5edefa494d1ad678d461ec15e (diff)
Remove invalid role and tabindex
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
index 3fc7ea85a..463fdb023 100644
--- a/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
+++ b/src/components/RightSidebar/Participants/ParticipantsList/Participant/Participant.vue
@@ -28,8 +28,8 @@
'isSearched': isSearched,
'selected': isSelected }"
:aria-label="participantAriaLabel"
- :role="isSearched ? 'listitem' : ''"
- :tabindex="isSearched ? 0 : -1"
+ :role="isSearched ? 'listitem' : undefined"
+ :tabindex="isSearched ? 0 : undefined"
v-on="isSearched ? { click: handleClick, 'keydown.enter': handleClick } : {}"
@keydown.enter="handleClick">
<!-- Participant's avatar -->