diff --git a/models/actions/task_step.go b/models/actions/task_step.go index 2cae15ca6a..3af1fe3f5a 100644 --- a/models/actions/task_step.go +++ b/models/actions/task_step.go @@ -37,5 +37,5 @@ func init() { func GetTaskStepsByTaskID(ctx context.Context, taskID int64) ([]*ActionTaskStep, error) { var steps []*ActionTaskStep - return steps, db.GetEngine(ctx).Where("task_id=?", taskID).OrderBy("index").Find(&steps) + return steps, db.GetEngine(ctx).Where("task_id=?", taskID).OrderBy("`index` ASC").Find(&steps) }