From 9a748fc5cd0dac511e363f2dd340363fe41e2679 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=99=AF=E9=98=B3?= <1656488874@qq.com> Date: Thu, 23 Jan 2020 11:09:35 +0800 Subject: [PATCH 01/17] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/conf/config.yml | 20 ++++++++++---------- frontend/.env.development | 1 + 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/backend/conf/config.yml b/backend/conf/config.yml index 90fa8fe1..6b10a6e2 100644 --- a/backend/conf/config.yml +++ b/backend/conf/config.yml @@ -1,25 +1,25 @@ api: address: "localhost:8000" mongo: - host: localhost + host: "192.168.235.26" port: 27017 - db: crawlab_test - username: "" - password: "" + db: crawlab_local + username: "root" + password: "example" authSource: "admin" redis: - address: localhost - password: "" + address: 127.0.0.1 + password: database: 1 port: 6379 log: level: info - path: "/var/logs/crawlab" + path: "./logs/crawlab" isDeletePeriodically: "N" deleteFrequency: "@hourly" server: host: 0.0.0.0 - port: 8000 + port: 8001 master: "Y" secret: "crawlab" register: @@ -30,11 +30,11 @@ server: python: "Y" node: "N" spider: - path: "/app/spiders" + path: "./spiders" task: workers: 4 other: - tmppath: "/tmp" + tmppath: "./tmp" version: 0.4.4 setting: allowRegister: "N" diff --git a/frontend/.env.development b/frontend/.env.development index 580de54d..a66b7b00 100644 --- a/frontend/.env.development +++ b/frontend/.env.development @@ -1,3 +1,4 @@ NODE_ENV='development' VUE_APP_BASE_URL=http://localhost:8000 VUE_APP_CRAWLAB_BASE_URL=http://api.crawlab.cn + From 092c1a2617426ab6a76ace9c66c8f35b63ac8fd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=99=AF=E9=98=B3?= <1656488874@qq.com> Date: Tue, 28 Jan 2020 15:12:12 +0800 Subject: [PATCH 02/17] =?UTF-8?q?feature=20=E6=96=B0=E5=A2=9E=E5=85=A8?= =?UTF-8?q?=E5=B1=80=E7=8E=AF=E5=A2=83=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/main.go | 152 +++++++++++++++++++++---------------- backend/model/variable.go | 97 +++++++++++++++++++++++ backend/routes/variable.go | 62 +++++++++++++++ backend/services/task.go | 6 +- 4 files changed, 250 insertions(+), 67 deletions(-) create mode 100644 backend/model/variable.go create mode 100644 backend/routes/variable.go diff --git a/backend/main.go b/backend/main.go index 20d70b22..8841c3f4 100644 --- a/backend/main.go +++ b/backend/main.go @@ -136,81 +136,101 @@ func main() { } authGroup := app.Group("/", middlewares.AuthorizationMiddleware()) { - // 路由 // 节点 - authGroup.GET("/nodes", routes.GetNodeList) // 节点列表 - authGroup.GET("/nodes/:id", routes.GetNode) // 节点详情 - authGroup.POST("/nodes/:id", routes.PostNode) // 修改节点 - authGroup.GET("/nodes/:id/tasks", routes.GetNodeTaskList) // 节点任务列表 - authGroup.GET("/nodes/:id/system", routes.GetSystemInfo) // 节点任务列表 - authGroup.DELETE("/nodes/:id", routes.DeleteNode) // 删除节点 - authGroup.GET("/nodes/:id/langs", routes.GetLangList) // 节点语言环境列表 - authGroup.GET("/nodes/:id/deps", routes.GetDepList) // 节点第三方依赖列表 - authGroup.GET("/nodes/:id/deps/installed", routes.GetInstalledDepList) // 节点已安装第三方依赖列表 - authGroup.POST("/nodes/:id/deps/install", routes.InstallDep) // 节点安装依赖 - authGroup.POST("/nodes/:id/deps/uninstall", routes.UninstallDep) // 节点卸载依赖 - authGroup.POST("/nodes/:id/langs/install", routes.InstallLang) // 节点安装语言 + { + authGroup.GET("/nodes", routes.GetNodeList) // 节点列表 + authGroup.GET("/nodes/:id", routes.GetNode) // 节点详情 + authGroup.POST("/nodes/:id", routes.PostNode) // 修改节点 + authGroup.GET("/nodes/:id/tasks", routes.GetNodeTaskList) // 节点任务列表 + authGroup.GET("/nodes/:id/system", routes.GetSystemInfo) // 节点任务列表 + authGroup.DELETE("/nodes/:id", routes.DeleteNode) // 删除节点 + authGroup.GET("/nodes/:id/langs", routes.GetLangList) // 节点语言环境列表 + authGroup.GET("/nodes/:id/deps", routes.GetDepList) // 节点第三方依赖列表 + authGroup.GET("/nodes/:id/deps/installed", routes.GetInstalledDepList) // 节点已安装第三方依赖列表 + authGroup.POST("/nodes/:id/deps/install", routes.InstallDep) // 节点安装依赖 + authGroup.POST("/nodes/:id/deps/uninstall", routes.UninstallDep) // 节点卸载依赖 + authGroup.POST("/nodes/:id/langs/install", routes.InstallLang) // 节点安装语言 + } // 爬虫 - authGroup.GET("/spiders", routes.GetSpiderList) // 爬虫列表 - authGroup.GET("/spiders/:id", routes.GetSpider) // 爬虫详情 - authGroup.PUT("/spiders", routes.PutSpider) // 添加爬虫 - authGroup.POST("/spiders", routes.UploadSpider) // 上传爬虫 - authGroup.POST("/spiders/:id", routes.PostSpider) // 修改爬虫 - authGroup.POST("/spiders/:id/publish", routes.PublishSpider) // 发布爬虫 - authGroup.POST("/spiders/:id/upload", routes.UploadSpiderFromId) // 上传爬虫(ID) - authGroup.DELETE("/spiders/:id", routes.DeleteSpider) // 删除爬虫 - authGroup.GET("/spiders/:id/tasks", routes.GetSpiderTasks) // 爬虫任务列表 - authGroup.GET("/spiders/:id/file/tree", routes.GetSpiderFileTree) // 爬虫文件目录树读取 - authGroup.GET("/spiders/:id/file", routes.GetSpiderFile) // 爬虫文件读取 - authGroup.POST("/spiders/:id/file", routes.PostSpiderFile) // 爬虫文件更改 - authGroup.PUT("/spiders/:id/file", routes.PutSpiderFile) // 爬虫文件创建 - authGroup.PUT("/spiders/:id/dir", routes.PutSpiderDir) // 爬虫目录创建 - authGroup.DELETE("/spiders/:id/file", routes.DeleteSpiderFile) // 爬虫文件删除 - authGroup.POST("/spiders/:id/file/rename", routes.RenameSpiderFile) // 爬虫文件重命名 - authGroup.GET("/spiders/:id/dir", routes.GetSpiderDir) // 爬虫目录 - authGroup.GET("/spiders/:id/stats", routes.GetSpiderStats) // 爬虫统计数据 - authGroup.GET("/spiders/:id/schedules", routes.GetSpiderSchedules) // 爬虫定时任务 + { + authGroup.GET("/spiders", routes.GetSpiderList) // 爬虫列表 + authGroup.GET("/spiders/:id", routes.GetSpider) // 爬虫详情 + authGroup.PUT("/spiders", routes.PutSpider) // 添加爬虫 + authGroup.POST("/spiders", routes.UploadSpider) // 上传爬虫 + authGroup.POST("/spiders/:id", routes.PostSpider) // 修改爬虫 + authGroup.POST("/spiders/:id/publish", routes.PublishSpider) // 发布爬虫 + authGroup.POST("/spiders/:id/upload", routes.UploadSpiderFromId) // 上传爬虫(ID) + authGroup.DELETE("/spiders/:id", routes.DeleteSpider) // 删除爬虫 + authGroup.GET("/spiders/:id/tasks", routes.GetSpiderTasks) // 爬虫任务列表 + authGroup.GET("/spiders/:id/file/tree", routes.GetSpiderFileTree) // 爬虫文件目录树读取 + authGroup.GET("/spiders/:id/file", routes.GetSpiderFile) // 爬虫文件读取 + authGroup.POST("/spiders/:id/file", routes.PostSpiderFile) // 爬虫文件更改 + authGroup.PUT("/spiders/:id/file", routes.PutSpiderFile) // 爬虫文件创建 + authGroup.PUT("/spiders/:id/dir", routes.PutSpiderDir) // 爬虫目录创建 + authGroup.DELETE("/spiders/:id/file", routes.DeleteSpiderFile) // 爬虫文件删除 + authGroup.POST("/spiders/:id/file/rename", routes.RenameSpiderFile) // 爬虫文件重命名 + authGroup.GET("/spiders/:id/dir", routes.GetSpiderDir) // 爬虫目录 + authGroup.GET("/spiders/:id/stats", routes.GetSpiderStats) // 爬虫统计数据 + authGroup.GET("/spiders/:id/schedules", routes.GetSpiderSchedules) // 爬虫定时任务 + } // 可配置爬虫 - authGroup.GET("/config_spiders/:id/config", routes.GetConfigSpiderConfig) // 获取可配置爬虫配置 - authGroup.POST("/config_spiders/:id/config", routes.PostConfigSpiderConfig) // 更改可配置爬虫配置 - authGroup.PUT("/config_spiders", routes.PutConfigSpider) // 添加可配置爬虫 - authGroup.POST("/config_spiders/:id", routes.PostConfigSpider) // 修改可配置爬虫 - authGroup.POST("/config_spiders/:id/upload", routes.UploadConfigSpider) // 上传可配置爬虫 - authGroup.POST("/config_spiders/:id/spiderfile", routes.PostConfigSpiderSpiderfile) // 上传可配置爬虫 - authGroup.GET("/config_spiders_templates", routes.GetConfigSpiderTemplateList) // 获取可配置爬虫模版列表 + { + authGroup.GET("/config_spiders/:id/config", routes.GetConfigSpiderConfig) // 获取可配置爬虫配置 + authGroup.POST("/config_spiders/:id/config", routes.PostConfigSpiderConfig) // 更改可配置爬虫配置 + authGroup.PUT("/config_spiders", routes.PutConfigSpider) // 添加可配置爬虫 + authGroup.POST("/config_spiders/:id", routes.PostConfigSpider) // 修改可配置爬虫 + authGroup.POST("/config_spiders/:id/upload", routes.UploadConfigSpider) // 上传可配置爬虫 + authGroup.POST("/config_spiders/:id/spiderfile", routes.PostConfigSpiderSpiderfile) // 上传可配置爬虫 + authGroup.GET("/config_spiders_templates", routes.GetConfigSpiderTemplateList) // 获取可配置爬虫模版列表 + } // 任务 - authGroup.GET("/tasks", routes.GetTaskList) // 任务列表 - authGroup.GET("/tasks/:id", routes.GetTask) // 任务详情 - authGroup.PUT("/tasks", routes.PutTask) // 派发任务 - authGroup.DELETE("/tasks/:id", routes.DeleteTask) // 删除任务 - authGroup.DELETE("/tasks_multiple", routes.DeleteMultipleTask) // 删除多个任务 - authGroup.DELETE("/tasks_by_status", routes.DeleteTaskByStatus) //删除指定状态的任务 - authGroup.POST("/tasks/:id/cancel", routes.CancelTask) // 取消任务 - authGroup.GET("/tasks/:id/log", routes.GetTaskLog) // 任务日志 - authGroup.GET("/tasks/:id/results", routes.GetTaskResults) // 任务结果 - authGroup.GET("/tasks/:id/results/download", routes.DownloadTaskResultsCsv) // 下载任务结果 + { + authGroup.GET("/tasks", routes.GetTaskList) // 任务列表 + authGroup.GET("/tasks/:id", routes.GetTask) // 任务详情 + authGroup.PUT("/tasks", routes.PutTask) // 派发任务 + authGroup.DELETE("/tasks/:id", routes.DeleteTask) // 删除任务 + authGroup.DELETE("/tasks_multiple", routes.DeleteMultipleTask) // 删除多个任务 + authGroup.DELETE("/tasks_by_status", routes.DeleteTaskByStatus) //删除指定状态的任务 + authGroup.POST("/tasks/:id/cancel", routes.CancelTask) // 取消任务 + authGroup.GET("/tasks/:id/log", routes.GetTaskLog) // 任务日志 + authGroup.GET("/tasks/:id/results", routes.GetTaskResults) // 任务结果 + authGroup.GET("/tasks/:id/results/download", routes.DownloadTaskResultsCsv) // 下载任务结果 + } // 定时任务 - authGroup.GET("/schedules", routes.GetScheduleList) // 定时任务列表 - authGroup.GET("/schedules/:id", routes.GetSchedule) // 定时任务详情 - authGroup.PUT("/schedules", routes.PutSchedule) // 创建定时任务 - authGroup.POST("/schedules/:id", routes.PostSchedule) // 修改定时任务 - authGroup.DELETE("/schedules/:id", routes.DeleteSchedule) // 删除定时任务 - authGroup.POST("/schedules/:id/disable", routes.DisableSchedule) // 禁用定时任务 - authGroup.POST("/schedules/:id/enable", routes.EnableSchedule) // 启用定时任务 + { + authGroup.GET("/schedules", routes.GetScheduleList) // 定时任务列表 + authGroup.GET("/schedules/:id", routes.GetSchedule) // 定时任务详情 + authGroup.PUT("/schedules", routes.PutSchedule) // 创建定时任务 + authGroup.POST("/schedules/:id", routes.PostSchedule) // 修改定时任务 + authGroup.DELETE("/schedules/:id", routes.DeleteSchedule) // 删除定时任务 + authGroup.POST("/schedules/:id/disable", routes.DisableSchedule) // 禁用定时任务 + authGroup.POST("/schedules/:id/enable", routes.EnableSchedule) // 启用定时任务 + } + // 用户 + { + authGroup.GET("/users", routes.GetUserList) // 用户列表 + authGroup.GET("/users/:id", routes.GetUser) // 用户详情 + authGroup.POST("/users/:id", routes.PostUser) // 更改用户 + authGroup.DELETE("/users/:id", routes.DeleteUser) // 删除用户 + authGroup.GET("/me", routes.GetMe) // 获取自己账户 + authGroup.POST("/me", routes.PostMe) // 修改自己账户 + } + // 系统 + { + authGroup.GET("/system/deps/:lang", routes.GetAllDepList) // 节点所有第三方依赖列表 + authGroup.GET("/system/deps/:lang/:dep_name/json", routes.GetDepJson) // 节点第三方依赖JSON + } + // 全局变量 + { + authGroup.POST("/variable", routes.PostVariable) // 新增 + authGroup.PUT("/variable/:id", routes.PutVariable) //修改 + authGroup.DELETE("/variable/:id", routes.DeleteVariable) //删除 + authGroup.GET("/variables", routes.GetVariableList) // 列表 + } // 统计数据 authGroup.GET("/stats/home", routes.GetHomeStats) // 首页统计数据 - // 用户 - authGroup.GET("/users", routes.GetUserList) // 用户列表 - authGroup.GET("/users/:id", routes.GetUser) // 用户详情 - authGroup.POST("/users/:id", routes.PostUser) // 更改用户 - authGroup.DELETE("/users/:id", routes.DeleteUser) // 删除用户 - authGroup.GET("/me", routes.GetMe) // 获取自己账户 - authGroup.POST("/me", routes.PostMe) // 修改自己账户 // release版本 authGroup.GET("/version", routes.GetVersion) // 获取发布的版本 - // 系统 - authGroup.GET("/system/deps/:lang", routes.GetAllDepList) // 节点所有第三方依赖列表 - authGroup.GET("/system/deps/:lang/:dep_name/json", routes.GetDepJson) // 节点第三方依赖JSON // 文件 authGroup.GET("/file", routes.GetFile) // 获取文件 } diff --git a/backend/model/variable.go b/backend/model/variable.go new file mode 100644 index 00000000..3af2188e --- /dev/null +++ b/backend/model/variable.go @@ -0,0 +1,97 @@ +package model + +import ( + "crawlab/database" + "errors" + "github.com/apex/log" + "github.com/globalsign/mgo/bson" + "runtime/debug" +) + +/** +全局变量 +*/ + +type Variable struct { + Id bson.ObjectId `json:"_id" bson:"_id"` + Key string `json:"key" bson:"key"` + Value string `json:"value" bson:"value"` + Remark string `json:"remark" bson:"remark"` +} + +func (model *Variable) Save() error { + s, c := database.GetCol("variable") + defer s.Close() + + if err := c.UpdateId(model.Id, model); err != nil { + log.Errorf("update variable error: %s", err.Error()) + return err + } + return nil +} + +func (model *Variable) Add() error { + s, c := database.GetCol("variable") + defer s.Close() + + // key 去重 + _, err := GetByKey(model.Key) + if err == nil { + return errors.New("key already exists") + } + + model.Id = bson.NewObjectId() + if err := c.Insert(model); err != nil { + log.Errorf("add variable error: %s", err.Error()) + debug.PrintStack() + return err + } + return nil +} + +func (model *Variable) Delete() error { + s, c := database.GetCol("variable") + defer s.Close() + + if err := c.RemoveId(model.Id); err != nil { + log.Errorf("remove variable error: %s", err.Error()) + debug.PrintStack() + return err + } + return nil +} + +func GetByKey(key string) (Variable, error) { + s, c := database.GetCol("variable") + defer s.Close() + + var model Variable + if err := c.Find(bson.M{"key": key}).One(&model); err != nil { + log.Errorf("variable found error: %s, key: %s", err.Error(), key) + return model, err + } + return model, nil +} + +func GetVariable(id bson.ObjectId) (Variable, error) { + s, c := database.GetCol("variable") + defer s.Close() + + var model Variable + if err := c.FindId(id).One(&model); err != nil { + log.Errorf("variable found error: %s", err.Error()) + return model, err + } + return model, nil +} + +func GetVariableList() []Variable { + s, c := database.GetCol("variable") + defer s.Close() + + var list []Variable + if err := c.Find(nil).All(&list); err != nil { + + } + return list +} diff --git a/backend/routes/variable.go b/backend/routes/variable.go new file mode 100644 index 00000000..56f51ed7 --- /dev/null +++ b/backend/routes/variable.go @@ -0,0 +1,62 @@ +package routes + +import ( + "crawlab/model" + "github.com/gin-gonic/gin" + "github.com/globalsign/mgo/bson" + "net/http" +) + +// 新增 +func PostVariable(c *gin.Context) { + var variable model.Variable + if err := c.ShouldBindJSON(&variable); err != nil { + HandleError(http.StatusBadRequest, c, err) + return + } + if err := variable.Add(); err != nil { + HandleError(http.StatusInternalServerError, c, err) + return + } + HandleSuccess(c) +} + +// 修改 +func PutVariable(c *gin.Context) { + var id = c.Param("id") + var variable model.Variable + if err := c.ShouldBindJSON(&variable); err != nil { + HandleError(http.StatusBadRequest, c, err) + return + } + variable.Id = bson.ObjectIdHex(id) + if err := variable.Save(); err != nil { + HandleError(http.StatusInternalServerError, c, err) + return + } + HandleSuccess(c) +} + +// 删除 +func DeleteVariable(c *gin.Context) { + var idStr = c.Param("id") + var id = bson.ObjectIdHex(idStr) + variable, err := model.GetVariable(id) + if err != nil { + HandleError(http.StatusInternalServerError, c, err) + return + } + variable.Id = id + if err := variable.Delete(); err != nil { + HandleError(http.StatusInternalServerError, c, err) + return + } + HandleSuccess(c) + +} + +// 列表 +func GetVariableList(c *gin.Context) { + list := model.GetVariableList() + HandleSuccessData(c, list) +} diff --git a/backend/services/task.go b/backend/services/task.go index da4eabc8..b41f0d81 100644 --- a/backend/services/task.go +++ b/backend/services/task.go @@ -144,7 +144,11 @@ func SetEnv(cmd *exec.Cmd, envs []model.Env, taskId string, dataCol string) *exe cmd.Env = append(cmd.Env, env.Name+"="+env.Value) } - // TODO 全局环境变量 + // 全局环境变量 + variables := model.GetVariableList() + for _, variable := range variables { + cmd.Env = append(cmd.Env, variable.Key+"="+variable.Value) + } return cmd } From 123e3835d25a874659e484c3706f7eb7db63fe01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=99=AF=E9=98=B3?= <1656488874@qq.com> Date: Tue, 28 Jan 2020 15:12:33 +0800 Subject: [PATCH 03/17] =?UTF-8?q?feature=20=E6=96=B0=E5=A2=9E=E5=85=A8?= =?UTF-8?q?=E5=B1=80=E7=8E=AF=E5=A2=83=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/i18n/zh.js | 5 + frontend/src/store/modules/user.js | 22 +++ frontend/src/views/setting/Setting.vue | 181 +++++++++++++++++++------ 3 files changed, 164 insertions(+), 44 deletions(-) diff --git a/frontend/src/i18n/zh.js b/frontend/src/i18n/zh.js index a5dddfcc..fc8b7303 100644 --- a/frontend/src/i18n/zh.js +++ b/frontend/src/i18n/zh.js @@ -361,6 +361,11 @@ export default { 'Never': '从不', 'DingTalk Robot Webhook': '钉钉机器人 Webhook', 'Wechat Robot Webhook': '微信机器人 Webhook', + 'Password Settings': '密码设置', + 'Notify Settings': '通知设置', + 'Global Variable': '全局变量', + 'Add Global Variable': '新增全局变量', + 'Are you sure to delete this global variable': '确定删除该全局变量?', // 其他 tagsView: { diff --git a/frontend/src/store/modules/user.js b/frontend/src/store/modules/user.js index af778816..3324ba15 100644 --- a/frontend/src/store/modules/user.js +++ b/frontend/src/store/modules/user.js @@ -9,6 +9,8 @@ const user = { avatar: '', roles: [], userList: [], + globalVariableList: [], + globalVariableForm: {}, userForm: {}, userInfo: undefined, adminPaths: [ @@ -61,6 +63,9 @@ const user = { }, SET_TOTAL_COUNT: (state, value) => { state.totalCount = value + }, + SET_GLOBAL_VARIABLE_LIST: (state, value) => { + state.globalVariableList = value } }, @@ -148,6 +153,23 @@ const user = { // 添加用户 addUser ({ dispatch, commit, state }) { return request.put('/users', state.userForm) + }, + // 新增全局变量 + addGlobalVariable ({ commit, state }) { + return request.post(`/variable`, state.globalVariableForm) + .then(() => { + state.globalVariableForm = {} + }) + }, + // 获取全局变量列表 + getGlobalVariable ({ commit, state }) { + request.get('/variables').then((response) => { + commit('SET_GLOBAL_VARIABLE_LIST', response.data.data) + }) + }, + // 删除全局变量 + deleteGlobalVariable ({ commit, state }, id) { + return request.delete(`/variable/${id}`) } } } diff --git a/frontend/src/views/setting/Setting.vue b/frontend/src/views/setting/Setting.vue index e82d47b6..0eade556 100644 --- a/frontend/src/views/setting/Setting.vue +++ b/frontend/src/views/setting/Setting.vue @@ -1,47 +1,98 @@ - - From 7e5d4c64504f659858c18d2c41ed8d1edb7ad8d3 Mon Sep 17 00:00:00 2001 From: marvzhang Date: Sat, 1 Feb 2020 12:22:05 +0800 Subject: [PATCH 08/17] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E6=95=99=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/Overview/TaskOverview.vue | 34 +++++-- frontend/src/views/task/TaskDetail.vue | 91 ++++++++++++++++++- 2 files changed, 113 insertions(+), 12 deletions(-) diff --git a/frontend/src/components/Overview/TaskOverview.vue b/frontend/src/components/Overview/TaskOverview.vue index cd3de0a8..ad929159 100644 --- a/frontend/src/components/Overview/TaskOverview.vue +++ b/frontend/src/components/Overview/TaskOverview.vue @@ -1,7 +1,7 @@