1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-11 18:11:32 +00:00

Issue relations filter lacks "is not" (#32546).

Patch by Alexander Achenbach.


git-svn-id: http://svn.redmine.org/redmine/trunk@19363 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2019-12-12 00:56:32 +00:00
parent b8dee19064
commit 261d3ed39c

View File

@ -300,7 +300,7 @@ class Query < ActiveRecord::Base
:text => [ "~", "!~", "^", "$", "!*", "*" ],
:integer => [ "=", ">=", "<=", "><", "!*", "*" ],
:float => [ "=", ">=", "<=", "><", "!*", "*" ],
:relation => ["=", "=p", "=!p", "!p", "*o", "!o", "!*", "*"],
:relation => ["=", "!", "=p", "=!p", "!p", "*o", "!o", "!*", "*"],
:tree => ["=", "~", "!*", "*"]
}