Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.web
Manage
Activity
Members
Labels
Plan
Issues
54
Issue boards
Milestones
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
beat
beat.web
Merge requests
!182
[report] unified saved and reload report after an update. Fixes
#423
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[report] unified saved and reload report after an update. Fixes
#423
fix_423
into
master
Overview
0
Commits
1
Pipelines
0
Changes
5
Merged
Flavio TARSETTI
requested to merge
fix_423
into
master
8 years ago
Overview
0
Commits
1
Pipelines
0
Changes
-
Expand
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
af31e2c1
1 commit,
8 years ago
+
88
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
Search (e.g. *.vue) (Ctrl+P)
beat/web/reports/static/reports/app/directives/reportItemView.js
+
3
−
1
Options
@@ -117,7 +117,9 @@ app.directive("savereportitems", function($compile)
scope
.
reportFactory
.
updateReport
(
scope
.
user
,
scope
.
report_id
,
data
,
scope
.
url_prefix
)
.
success
(
function
(
reportData
)
{
alert
(
"
The report
"
+
scope
.
report_id
+
"
has been saved.
"
);
//alert("The report "+ scope.report_id +" has been saved.");
beat
.
ui
.
report
.
report_saved
(
'
report_saved
'
,
scope
);
})
.
error
(
function
(
error
)
{
Loading