Skip to content

Commit

Permalink
Update WhatsNew
Browse files Browse the repository at this point in the history
Fix #969
  • Loading branch information
vnbaaij committed Nov 19, 2023
1 parent 5ad5104 commit 8a68a49
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
7 changes: 6 additions & 1 deletion WHATSNEW.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## V4.0.0
## V4.0.1
- FluentSplitter: Add Panel1MinSize, Panel2MinSize, BarSize parameters. Make resizing always use proportional values
- Fix Web App template to correctly handle NavMenu based on rendermode and interactivity choices
- Fix miscallaneous demo errors caused by trimming

## V4.0.0
- FluentAccordionItem: Add `HeaderTemplate` parameter

- ## V4.0.0-rc.3
Expand Down
7 changes: 6 additions & 1 deletion examples/Demo/Shared/wwwroot/docs/WhatsNew.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## V4.0.0
## V4.0.1
- FluentSplitter: Add Panel1MinSize, Panel2MinSize, BarSize parameters. Make resizing always use proportional values
- Fix Web App template to correctly handle NavMenu based on rendermode and interactivity choices
- Fix miscallaneous demo errors caused by trimming

## V4.0.0
- FluentAccordionItem: Add `HeaderTemplate` parameter

## V4.0.0-rc.3
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Components/NumberField/FluentNumberField.razor
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
max="@Max"
min="@Min"
id=@Id
value=@Value
value=@BindConverter.FormatValue(CurrentValue, CultureInfo.InvariantCulture)
current-value="@BindConverter.FormatValue(CurrentValue, CultureInfo.InvariantCulture)"
disabled="@Disabled"
name=@Name
Expand Down

0 comments on commit 8a68a49

Please sign in to comment.