Skip to content

feat(VDisk): show VDisk donors inside popup #1422

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 10, 2024
Merged

feat(VDisk): show VDisk donors inside popup #1422

merged 2 commits into from
Oct 10, 2024

Conversation

ValeraS
Copy link
Collaborator

@ValeraS ValeraS commented Oct 8, 2024

CI Results

Test Status: ⚠️ FLAKY

📊 Full Report

Total Passed Failed Flaky Skipped
128 127 0 1 0

Bundle Size: ✅

Current: 79.14 MB | Main: 79.13 MB
Diff: +0.00 MB (0.00%)

✅ Bundle size unchanged.

ℹ️ CI Information
  • Test recordings for failed tests are available in the full report.
  • Bundle size is measured for the entire 'dist' directory.
  • 📊 indicates links to detailed reports.
  • 🔺 indicates increase, 🔽 decrease, and ✅ no change in bundle size.

@ValeraS ValeraS linked an issue Oct 8, 2024 that may be closed by this pull request
Comment on lines +153 to +174
if ('Donors' in data && data.Donors) {
const donors = data.Donors;
for (const donor of donors) {
const isFullDonorData = isFullVDiskData(donor);
donorsInfo.push({
label: 'VDisk',
value: (
<InternalLink to={getVDiskLink(donor)}>
{stringifyVdiskId(
isFullDonorData
? donor.VDiskId
: {
NodeId: donor.NodeId,
PDiskId: donor.PDiskId,
VSlotId: donor.VSlotId,
},
)}
</InternalLink>
),
});
}
}
Copy link
Member

@artemmufazalov artemmufazalov Oct 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This link cannot be selected.

There is an issue for this, you should do it to make it work: #1360. Probably in another PR

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's fixed here: #1435

@ValeraS ValeraS added this pull request to the merge queue Oct 10, 2024
Merged via the queue into main with commit fc12a38 Oct 10, 2024
6 checks passed
@ValeraS ValeraS deleted the feat/issue-1398 branch October 10, 2024 11:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Rework VDisk donor's representation on Storage/Nodes page
2 participants