Skip to content

Commit

Permalink
Fix RTL comparator operator
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKumakun committed Mar 11, 2024
1 parent 12fa5f5 commit 6d9ac65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions blockly/blocks/logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,10 @@ Blockly.Blocks['logic_compare'] = {
var OPERATORS = this.RTL ? [
['=', 'EQ'],
['\u2260', 'NEQ'],
['>', 'LT'],
['\u2265', 'LTE'],
['<', 'GT'],
['\u2264', 'GTE']
['<', 'LT'],
['\u2264', 'LTE'],
['>', 'GT'],
['\u2265', 'GTE']
] : [
['=', 'EQ'],
['\u2260', 'NEQ'],
Expand Down

0 comments on commit 6d9ac65

Please sign in to comment.