Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Block Explorer UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
hive
Block Explorer UI
Merge requests
!507
Delrifai/
#394
2 add charts to balance history
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Delrifai/
#394
2 add charts to balance history
delrifai/#394_2_add_charts_to_balance_history
into
develop
Overview
1
Commits
39
Pipelines
4
Changes
9
Merged
Dima Rifai
requested to merge
delrifai/#394_2_add_charts_to_balance_history
into
develop
3 months ago
Overview
1
Commits
39
Pipelines
4
Changes
1
Expand
0
0
Merge request reports
Compare
version 1
version 3
94bb2dc2
2 months ago
version 2
2d2d5987
3 months ago
version 1
958fc449
3 months ago
develop (base)
and
version 2
latest version
7def51dc
39 commits,
2 months ago
version 3
94bb2dc2
38 commits,
2 months ago
version 2
2d2d5987
22 commits,
3 months ago
version 1
958fc449
21 commits,
3 months ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
pages/balanceHistory/[accountName].tsx
+
1
−
1
Options
@@ -162,7 +162,7 @@ export default function BalanceHistory() {
// Use useMemo to memoize the prepared data so it only recalculates when chartData changes
const
preparedData
=
useMemo
(()
=>
{
return
chartData
?
prepareData
(
chartData
.
operations_result
.
slice
().
reverse
())
:
[];
return
chartData
?
prepareData
(
chartData
.
operations_result
?
.
slice
().
reverse
())
:
[];
},
[
chartData
]);
// This will only recompute when chartData changes
let
message
=
""
;
Loading