[Solved] Serial Plotter labels broken in Arduino IDE 1.8.10?

Hello,

I am using the Serial Plotter in Arduino IDE 1.8.10 and this is the piece of code that i'm using to display 2 graphs.

Serial.print("speeds_filter: ");
  Serial.print(speeds_filter);
  Serial.print(", ");
  Serial.print("speeds: ");
  Serial.println(speeds);

But the labels and color coding seem to broken... At the top-left corner of the graph, there are 4 color boxes? Which color box corresponds to which label? And why are there 4 color boxes when there should be only 2?
If this is a bug, should i revert back to Arduino IDE 1.8.9?
SerialPlotterlabels.png
Also, is it possible to change or even better, choose the colours of the graphs?

Edit: I fixed it by trial and error. I removed the space after the label text.

Serial.print("speeds_filter:");
  Serial.print(speeds_filter);
  Serial.print(", ");
  Serial.print("speeds:");
  Serial.println(speeds);

SerialPlotterlabels.png

You might want to edit your title to include the word [solved] in it so people don't continue to see an unanswered post as well as helping future searchers