Skip to content

Commit

Permalink
fix(tier4_metrics_rviz_plugin): fix metrics_name column (#6568)
Browse files Browse the repository at this point in the history
Signed-off-by: kosuke55 <[email protected]>
  • Loading branch information
kosuke55 authored Mar 7, 2024
1 parent baa923e commit 3381296
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ struct Metric
{
auto label = new QLabel;
label->setAlignment(Qt::AlignCenter);
label->setText("metric_name");
label->setText(QString::fromStdString(status.name));
labels.emplace("metric_name", label);

header.push_back(QString::fromStdString(status.name));
header.push_back("metric_name");
}

for (const auto & [key, value] : status.values) {
Expand Down

0 comments on commit 3381296

Please sign in to comment.