Skip to content

Commit

Permalink
#1893 Update patternId field type in case filter field list
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Mar 26, 2021
1 parent bedb405 commit 5377651
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ class DescribeCtrl @Inject() (
case ("dashboard", "status") =>
Some(Seq(PropertyDescription("status", "enumeration", Seq(JsString("Shared"), JsString("Private"), JsString("Deleted")))))
case (_, "patternId") =>
Some(Seq(PropertyDescription("patternId", "patternId", Nil)))
Some(Seq(PropertyDescription("patternId", "string", Nil)))
case _ => None
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class DescribeCtrl @Inject() (
case (_, "_createdBy") => Some(Seq(PropertyDescription("_createdBy", "user")))
case (_, "_updatedBy") => Some(Seq(PropertyDescription("_updatedBy", "user")))
case (_, "customFields") => Some(customFields)
case (_, "patternId") => Some(Seq(PropertyDescription("patternId", "patternId", Nil)))
case (_, "patternId") => Some(Seq(PropertyDescription("patternId", "string", Nil)))
case _ => None
}

Expand Down

0 comments on commit 5377651

Please sign in to comment.