File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
2+ ## [ 32.6.2] - 2026-05-15
3+ - add optional saveButtonLabelText parameter to SaveBackCancelButtons to change text on Save button. Defaults to Save.
24## [ 32.6.1] - 2026-04-28
35- Show more fields in address search results
46## [ 32.6.0] - 2026-04-27
Original file line number Diff line number Diff line change 11{
22 "name" : " @linn-it/linn-form-components-library" ,
3- "version" : " 32.6.1 " ,
3+ "version" : " 32.6.2 " ,
44 "private" : false ,
55 "repository" : {
66 "type" : " git" ,
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ function SaveBackCancelButtons({
99 saveDisabled = false ,
1010 backClick,
1111 showBackButton = true ,
12- editStatus = null
12+ editStatus = null ,
13+ saveButtonLabelText = 'Save'
1314} ) {
1415 const editing = editStatus === 'edit' || editStatus === 'create' ;
1516
@@ -40,7 +41,7 @@ function SaveBackCancelButtons({
4041 onClick = { ( ) => saveClick ( ) }
4142 disabled = { saveDisabled }
4243 >
43- Save
44+ { saveButtonLabelText }
4445 </ Button >
4546 </ Box >
4647 ) ;
You can’t perform that action at this time.
0 commit comments