Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lindelea committed Jan 30, 2019
1 parent 9ad19f1 commit d274688
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class TaskGroupEditController: UITableViewController {
let type = self.editResource.types[self.type.selectedRow(inComponent: 0)]
let statusId: Int = self.status.selectedSegmentIndex == 0 ? TaskGroup.Status.open.rawValue : TaskGroup.Status.close.rawValue
let colorId = self.color.selectedRow(inComponent: 0) + 1
let register = TaskGroupRegister(id: nil,
let register = TaskGroupRegister(id: self.taskGroup.id,
title: self.groupName.text,
information: nil,
typeId: type.id,
Expand Down

0 comments on commit d274688

Please sign in to comment.