Skip to content

Commit

Permalink
Disable RTL for Portalnames
Browse files Browse the repository at this point in the history
in right-to-left languages some message are screwed up.

like: x created field @11+ portal mus
instead of: x created field @portal  +11 mus
  • Loading branch information
McBen authored Oct 31, 2024
1 parent 98b0b77 commit f468e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/code/comm.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function _initChannelData(id) {
* @memberof IITC.comm
*/
let portalTemplate =
'<a onclick="window.selectPortalByLatLng({{ lat }}, {{ lng }});return false" title="{{ title }}" href="{{ url }}" class="help">{{ portal_name }}</a>';
'<a onclick="window.selectPortalByLatLng({{ lat }}, {{ lng }});return false" title="{{ title }}" href="{{ url }}" class="help" style="unicode-bidi: isolate;">{{ portal_name }}</a>';
/**
* Template for time cell.
* @type {String}
Expand Down

0 comments on commit f468e6d

Please sign in to comment.