Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
2a33752c
Commit
2a33752c
authored
Jun 08, 2017
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing aria-hidden attribute to i tags
parent
ec7f906b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
8 deletions
+21
-8
app/assets/javascripts/groups/components/group_item.vue
app/assets/javascripts/groups/components/group_item.vue
+21
-8
No files found.
app/assets/javascripts/groups/components/group_item.vue
View file @
2a33752c
...
...
@@ -110,7 +110,11 @@ export default {
v-if=
"group.canEdit"
class=
"edit-group btn"
:href=
"group.editPath"
>
<i
aria-hidden=
"true"
class=
"fa fa-cogs"
></i>
<i
class=
"fa fa-cogs"
aria-hidden=
"true"
>
</i>
</a>
<a
@
click=
"onLeaveGroup"
...
...
@@ -118,8 +122,9 @@ export default {
class=
"leave-group btn"
title=
"Leave this group"
>
<i
class=
"fa fa-sign-out"
aria-hidden=
"true"
class=
"fa fa-sign-out"
>
>
</i>
</a>
</div>
...
...
@@ -128,24 +133,27 @@ export default {
<span
class=
"number-projects"
>
<i
class=
"fa fa-bookmark"
aria-hidden=
"true"
class=
"fa fa-bookmark"
>
>
</i>
{{
group
.
numberProjects
}}
</span>
<span
class=
"number-users"
>
<i
class=
"fa fa-users"
aria-hidden=
"true"
class=
"fa fa-users"
>
>
</i>
{{
group
.
numberUsers
}}
</span>
<span
class=
"group-visibility"
>
<i
:class=
"visibilityIcon"
aria-hidden=
"true"
:class=
"visibilityIcon"
>
>
</i>
</span>
</div>
...
...
@@ -156,18 +164,23 @@ export default {
v-if=
"group.hasSubgroups"
>
<i
v-if=
"group.isOpen"
class=
"fa fa-caret-down"
>
class=
"fa fa-caret-down"
aria-hidden=
"true"
>
</i>
<i
v-if=
"!group.isOpen"
class=
"fa fa-caret-right"
>
class=
"fa fa-caret-right"
aria-hidden=
"true"
>
</i>
</span>
<span
class=
"folder-icon"
>
<i
v-if=
"group.isOpen"
class=
"fa fa-folder-open"
aria-hidden=
"true"
>
aria-hidden=
"true"
>
</i>
<i
v-if=
"!group.isOpen"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment