Skip to content

Commit d9f6632

Browse files
committed
Fix issue with >= <= != !== operators close #14
1 parent 7d80829 commit d9f6632

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/js/field.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/js/components/FormField.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
}),
6565
conditionSatisfied: false,
6666
operators: [
67-
'===', '==', '=',
68-
'!==', '!=',
6967
'>=', '<=', '<', '>',
68+
'!==', '!=',
69+
'===', '==', '=',
7070
'includes', 'contains',
7171
'ends with', 'starts with', 'startsWith', 'endsWith',
7272
'boolean ', 'truthy'

src/ConditionalContainer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ class ConditionalContainer extends Field
3535
* @var Collection
3636
*/
3737
const OPERATORS = [
38-
'===', '==', '=',
39-
'!==', '!=',
4038
'>=', '<=', '<', '>',
39+
'!==', '!=',
40+
'===', '==', '=',
4141
'includes', 'contains',
4242
'ends with', 'starts with', 'startsWith', 'endsWith',
4343
'boolean', 'truthy'

0 commit comments

Comments
 (0)