Commit cf37111 authored Mar 5, 2025 Verified
File tree 1 file changed +14
-14
lines changed
client/packages/invoices/src/Prescriptions/DetailView
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -112,20 +112,6 @@ export const Toolbar: FC = () => {
112
112
}
113
113
/>
114
114
) }
115
- < InputWithLabelRow
116
- label = { t ( 'label.date' ) }
117
- Input = {
118
- < DateTimePickerInput
119
- disabled = { isDisabled }
120
- value = { DateUtils . getDateOrNull ( dateValue ) ?? new Date ( ) }
121
- format = "P"
122
- onChange = { handleDateChange }
123
- maxDate = { new Date ( ) }
124
- />
125
- }
126
- />
127
- </ Grid >
128
- < Grid container flexDirection = "column" display = "flex" gap = { 1 } >
129
115
< InputWithLabelRow
130
116
label = { t ( 'label.clinician' ) }
131
117
Input = {
@@ -143,6 +129,20 @@ export const Toolbar: FC = () => {
143
129
}
144
130
/>
145
131
</ Grid >
132
+ < Grid container flexDirection = "column" display = "flex" gap = { 1 } >
133
+ < InputWithLabelRow
134
+ label = { t ( 'label.date' ) }
135
+ Input = {
136
+ < DateTimePickerInput
137
+ disabled = { isDisabled }
138
+ value = { DateUtils . getDateOrNull ( dateValue ) ?? new Date ( ) }
139
+ format = "P"
140
+ onChange = { handleDateChange }
141
+ maxDate = { new Date ( ) }
142
+ />
143
+ }
144
+ />
145
+ </ Grid >
146
146
</ AppBarContentPortal >
147
147
) ;
148
148
} ;
You can’t perform that action at this time.
0 commit comments