@@ -57,7 +57,7 @@ export default function ConfigurationModal() {
57
57
< div className = "mb-2" >
58
58
< fieldset className = "space-y-5" >
59
59
< div className = "relative flex items-start text-left" >
60
- < div className = "flex items-center h-5 " >
60
+ < div className = "flex items-center h-6 " >
61
61
< input id = "comments" type = "checkbox" onChange = { ( e ) => {
62
62
toggleConfigurationOption ( 'highlightText' ) ;
63
63
} } checked = { configuration . highlightText }
@@ -69,7 +69,7 @@ export default function ConfigurationModal() {
69
69
</ div >
70
70
</ div >
71
71
< div className = "relative flex items-start text-left" >
72
- < div className = "flex items-center h-5 " >
72
+ < div className = "flex items-center h-6 " >
73
73
< input id = "comments" type = "checkbox" onChange = { ( ) => toggleConfigurationOption ( 'weakSupervisionRelated' ) } checked = { configuration . weakSupervisionRelated }
74
74
className = "focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded cursor-pointer" />
75
75
</ div >
@@ -79,7 +79,7 @@ export default function ConfigurationModal() {
79
79
</ div >
80
80
</ div >
81
81
< div className = "relative flex items-start text-left" >
82
- < div className = "flex items-center h-5 " >
82
+ < div className = "flex items-center h-6 " >
83
83
< input id = "comments" type = "checkbox" onChange = { toggleLineBreaks } checked = { configuration . lineBreaks != LineBreaksType . NORMAL }
84
84
className = "focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded cursor-pointer" />
85
85
</ div >
@@ -89,15 +89,15 @@ export default function ConfigurationModal() {
89
89
</ div >
90
90
</ div >
91
91
{ configuration . lineBreaks != LineBreaksType . NORMAL && < div className = "px-10" >
92
- < div className = "flex flex-row items-start mt-2 text-left" >
92
+ < div className = "flex flex-row items-center mt-2 text-left" >
93
93
< input type = "radio" checked = { configuration . lineBreaks == LineBreaksType . IS_PRE_WRAP } onChange = { toggleLineBreaksPreWrap } name = "lineBreaks" id = "preWrap"
94
94
className = "focus:ring-blue-500 h-6 w-4 text-blue-600 border-gray-200 cursor-pointer" />
95
95
< label htmlFor = "preWrap" className = "ml-1 block text-sm font-medium text-gray-700 cursor-pointer" >
96
96
< span > Pre-wrap</ span >
97
97
< p className = "text-gray-500 text-sm cursor-pointer" > Preserves whitespace and line breaks </ p >
98
98
</ label >
99
99
</ div >
100
- < div className = "flex flex-row items-start mt-2 text-left" >
100
+ < div className = "flex flex-row items-center mt-2 text-left" >
101
101
< input type = "radio" checked = { configuration . lineBreaks == LineBreaksType . IS_PRE_LINE } onChange = { toggleLineBreaksPreWrap } name = "lineBreaks" id = "preLine"
102
102
className = "focus:ring-blue-500 h-6 w-4 text-blue-600 border-gray-200 cursor-pointer" />
103
103
< label htmlFor = "preLine" className = "ml-1 block text-sm font-medium text-gray-700 cursor-pointer" >
@@ -108,12 +108,12 @@ export default function ConfigurationModal() {
108
108
</ div > }
109
109
</ fieldset >
110
110
< div className = "mt-3 text-sm text-gray-900 text-left" > Select which separator you want to use for the IN operator</ div >
111
- < div className = "flex flex-row items-start mt-2 text-left" >
111
+ < div className = "flex flex-row items-center mt-2 text-left" >
112
112
< input type = "radio" checked = { configuration . separator == ',' } onChange = { toggleSeparator } name = "comma" id = "comma"
113
113
className = "focus:ring-blue-500 h-6 w-4 text-blue-600 border-gray-200 cursor-pointer" />
114
114
< label htmlFor = "comma" className = "ml-1 block text-sm font-medium text-gray-700 cursor-pointer" > Comma(,)</ label >
115
115
</ div >
116
- < div className = "flex flex-row items-start mt-2 text-left" >
116
+ < div className = "flex flex-row items-center mt-2 text-left" >
117
117
< input type = "radio" checked = { configuration . separator == '-' } onChange = { toggleSeparator } name = "dash" id = "dash"
118
118
className = "focus:ring-blue-500 h-6 w-4 text-blue-600 border-gray-200 cursor-pointer" />
119
119
< label htmlFor = "dash" className = "ml-1 block text-sm font-medium text-gray-700 cursor-pointer" > Dash(-)</ label >
0 commit comments