Skip to content

Commit d5b5fb1

Browse files
committed
bugfix: project tariffs are floats
1 parent ee9a4bb commit d5b5fb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/components/project/controls/EditProjectClient.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Bridge = ({value = [getNewInvoiceLine()], onChange}: MinimalInputProps<Inv
3636

3737

3838
const defaultInvoiceLinesConfig: FullFormConfig = [
39-
{key: 'price', label: 'project.client.tariff', component: 'basic-math', prefix: '€', cols: 2},
39+
{key: 'price', label: 'project.client.tariff', component: 'basic-math', prefix: '€', cols: 2, props: {float: true}},
4040
{key: 'type', label: 'project.client.rateType', component: 'ProjectLineTypeSelect', cols: 2},
4141
];
4242

0 commit comments

Comments
 (0)