Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tryton
Tryton
Commits
a98928842010
Commit
a9892884
authored
Jan 25, 2023
by
Cédric Krier
Browse files
Fix source clause of empty translation source introduced by
4ec2377b84e5
parent
3a0bb94e297a
Pipeline
#61747
passed with stages
in 16 minutes and 32 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
trytond/trytond/ir/translation.py
View file @
a9892884
...
...
@@ -1585,8 +1585,8 @@
where
=
((
translation
.
value
==
''
)
|
(
translation
.
value
==
Null
))
&
(
translation
.
lang
==
lang
)
&
translation
.
src
!=
''
&
translation
.
src
!=
Null
))
&
(
translation
.
src
!=
''
)
&
(
translation
.
src
!=
Null
))
)
&
(
translation
.
value
!=
''
)
&
(
translation
.
value
!=
Null
),
group_by
=
translation
.
src
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment