Skip to content

Commit 180f97d

Browse files
committed
make other userID nav links in sidebar nav use ltr direction
1 parent 003a574 commit 180f97d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

templates/ContentGenerator/Base/links.html.ep

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
'instructor_user_statistics',
164164
text => $urlUserID,
165165
captures => { userID => $urlUserID },
166+
link_attrs => { dir => 'ltr' }
166167
) %>
167168
</li>
168169
% }
@@ -173,7 +174,8 @@
173174
text => $eUserID,
174175
captures => { userID => $eUserID },
175176
active => current_route eq 'instructor_user_statistics'
176-
&& !defined $urlUserID
177+
&& !defined $urlUserID,
178+
link_attrs => { dir => 'ltr' }
177179
) %>
178180
</li>
179181
% }
@@ -216,6 +218,7 @@
216218
'instructor_user_progress',
217219
text => $urlUserID,
218220
captures => { userID => $urlUserID },
221+
link_attrs => { dir => 'ltr' }
219222
) %>
220223
</li>
221224
% }
@@ -226,7 +229,8 @@
226229
text => $eUserID,
227230
captures => { userID => $eUserID },
228231
active => current_route eq 'instructor_user_progress'
229-
&& !defined $urlUserID
232+
&& !defined $urlUserID,
233+
link_attrs => { dir => 'ltr' }
230234
) %>
231235
</li>
232236
% }

0 commit comments

Comments
 (0)