Browse Source

task info now also shows env file

logicp 5 năm trước cách đây
mục cha
commit
4a35227166
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      src/mainwindow.cpp

+ 2 - 1
src/mainwindow.cpp

@@ -369,7 +369,8 @@ QString MainWindow::parseTaskInfo(StringVec v) {
   } else {
     return QString{
         "  UUID - " + v.at(0) + "\n  ID - " + v.at(1) + "\n  APP - " +
-        q_client->getAppName(std::stoi(v.at(2).toUtf8().constData()))};
+        q_client->getAppName(std::stoi(v.at(2).toUtf8().constData())) +
+        "\n ENV - " + v.at(3)};
   }
 }