Skip to content

Commit

Permalink
Merge pull request #363 from 1CRM/fix_offield_fixedcontent
Browse files Browse the repository at this point in the history
fix OfField fixed content, app-js#784
  • Loading branch information
alexivanenko authored Jan 19, 2024
2 parents e904a12 + d4c5490 commit 42a7ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/oceanfront/src/fields/Text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ export const OfTextField = defineComponent({
})
},
fixedContent: () => {
return formatter.value?.formatFixed?.(lazyInputValue) ?? lazyInputValue
return formatter.value?.formatFixed?.(fieldCtx.value) ?? lazyInputValue
},
}

Expand Down

0 comments on commit 42a7ace

Please sign in to comment.