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
Commits
2d2d5987
Commit
2d2d5987
authored
3 months ago
by
Dima Rifai
Browse files
Options
Downloads
Patches
Plain Diff
Check if empty or not before slice
parent
958fc449
No related branches found
No related tags found
1 merge request
!507
Delrifai/#394 2 add charts to balance history
Pipeline
#112329
failed
3 months ago
Stage: build
Stage: test
Stage: test-report-aggregate
Stage: cleanup
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pages/balanceHistory/[accountName].tsx
+1
-1
1 addition, 1 deletion
pages/balanceHistory/[accountName].tsx
with
1 addition
and
1 deletion
pages/balanceHistory/[accountName].tsx
+
1
−
1
View file @
2d2d5987
...
@@ -162,7 +162,7 @@ export default function BalanceHistory() {
...
@@ -162,7 +162,7 @@ export default function BalanceHistory() {
// Use useMemo to memoize the prepared data so it only recalculates when chartData changes
// Use useMemo to memoize the prepared data so it only recalculates when chartData changes
const
preparedData
=
useMemo
(()
=>
{
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
},
[
chartData
]);
// This will only recompute when chartData changes
let
message
=
""
;
let
message
=
""
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment