Fix capitalization of image and pool variables in embedded grafana rbd-details panel
Fixes: https://tracker.ceph.com/issues/67849
Signed-off-by: Juan Ferrer Toribio <22457707+juan-ferrer-toribio@users.noreply.github.com>
(cherry picked from commit
dfca044b6466d599fc4eb50f31bc40949e91e70e)
ngOnChanges() {
if (this.selection) {
- this.rbdDashboardUrl = `rbd-details?var-Pool=${this.selection['pool_name']}&var-Image=${this.selection['name']}`;
+ this.rbdDashboardUrl = `rbd-details?var-pool=${this.selection['pool_name']}&var-image=${this.selection['name']}`;
}
}
}