Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
Version
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
Version
Merge requests
!3
Something went wrong on our end
Port to odoo 11.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Port to odoo 11.0
topic/11.0/TG-1249-OB
into
branch/13.0
Overview
0
Commits
2
Pipelines
0
Changes
6
Closed
oury.balde
requested to merge
topic/11.0/TG-1249-OB
into
branch/13.0
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
6
Expand
Associated taiga task:
1249
0
0
Merge request reports
Viewing commit
ed97d0d6
Prev
Next
Show latest version
6 files
+
10
−
15
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
ed97d0d6
Port to odoo 11.0
· ed97d0d6
oury.balde
authored
2 years ago
static/src/js/code_version.js
+
2
−
2
Options
@@ -4,7 +4,7 @@
var
rpc
=
require
(
"
web.rpc
"
);
var
SystrayMenu
=
require
(
"
web.SystrayMenu
"
);
var
Widget
=
require
(
"
web.Widget
"
);
const
config
=
require
(
"
web.
config
"
);
var
session
=
require
(
"
web.
session
"
);
var
DisplayCodeVersion
=
Widget
.
extend
({
template
:
"
DisplayCodeVersion
"
,
@@ -15,7 +15,7 @@
method
:
"
get_value
"
,
}).
then
(
function
(
code_version_tuple
)
{
self
.
$
(
"
.code_version
"
).
html
(
code_version_tuple
[
0
]);
if
(
config
.
isD
ebug
()
)
{
if
(
session
.
d
ebug
)
{
self
.
$
(
"
.code_version_title
"
).
attr
(
"
title
"
,
code_version_tuple
[
1
]);
}
});
Loading