Skip to content

Commit

Permalink
Fixes #645
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll committed Feb 18, 2019
1 parent 1a591fd commit 3031244
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/UniversalDashboard.UITest/Manifest.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Get-UDDashboard | Stop-UDDashboard
Describe "Manifest" {

It "should have correct version" {
(Get-Module 'UniversalDashboard.Community').Version | Should be "2.3.0"
(Get-Module 'UniversalDashboard.Community').Version | Should be "2.3.2"
}

It "should have correct exported commands" {
Expand Down
2 changes: 1 addition & 1 deletion src/UniversalDashboard/Controllers/ComponentController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public IActionResult Input(string id)
[HttpPost]
[Route("input/validate/{fieldId}/{fieldName}")]
[Authorize]
public IActionResult ValidateField([FromRoute]string fieldId, [FromRoute]string fieldName, [FromBody]object value)
public IActionResult ValidateField([FromRoute]string fieldId, [FromRoute]string fieldName, [FromBody]string value)
{
Log.Debug($"Validate Field - id = {fieldId}, value = {value}");

Expand Down
12 changes: 6 additions & 6 deletions src/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3031244

Please sign in to comment.