diff --git a/selfdrive/ui/qt/offroad/settings.cc b/selfdrive/ui/qt/offroad/settings.cc index 3c659091ee..6bb731a09a 100644 --- a/selfdrive/ui/qt/offroad/settings.cc +++ b/selfdrive/ui/qt/offroad/settings.cc @@ -171,13 +171,11 @@ QWidget * developer_panel() { // TODO: enable SSH toggle and github keys Params params = Params(); - std::string brand = params.read_db_bool("Passive") ? "dashcam" : "openpilot"; - std::vector> labels = { - {"Version", brand + " " + params.get("Version", false)}, + {"Version", brand + " v" + params.get("Version", false)}, {"Git Branch", params.get("GitBranch", false)}, - {"Git Commit", params.get("GitCommit", false)}, + {"Git Commit", params.get("GitCommit", false).substr(0, 10)}, {"Panda Firmware", params.get("PandaFirmwareHex", false)}, };