@@ -173,7 +173,7 @@ const MainForm = (
173173 label : 'Name' ,
174174 value : tableGroupsName ,
175175 height : 38 ,
176- help : 'A unique name to describe the table group' ,
176+ help : 'Unique name to describe the table group' ,
177177 helpPlacement : 'bottom-right' ,
178178 onChange : ( value , state ) => {
179179 tableGroupsName . val = value ;
@@ -186,7 +186,7 @@ const MainForm = (
186186 label : 'Tables to Include Mask' ,
187187 value : profilingIncludeMask ,
188188 height : 38 ,
189- help : 'A SQL filter supported by your database\'s LIKE operator for table names to include' ,
189+ help : 'SQL filter supported by your database\'s LIKE operator for table names to include' ,
190190 onChange : ( value , state ) => {
191191 profilingIncludeMask . val = value ;
192192 options . setValidity ?. ( 'profiling_include_mask' , state . valid ) ;
@@ -197,7 +197,7 @@ const MainForm = (
197197 label : 'Tables to Exclude Mask' ,
198198 value : profilingExcludeMask ,
199199 height : 38 ,
200- help : 'A SQL filter supported by your database\'s LIKE operator for table names to exclude' ,
200+ help : 'SQL filter supported by your database\'s LIKE operator for table names to exclude' ,
201201 onChange : ( value , state ) => {
202202 profilingExcludeMask . val = value ;
203203 options . setValidity ?. ( 'profiling_exclude_mask' , state . valid ) ;
@@ -208,7 +208,7 @@ const MainForm = (
208208 label : 'Explicit Table List' ,
209209 value : profilingTableSet ,
210210 height : 38 ,
211- help : 'A list of specific table names to include, separated by commas' ,
211+ help : 'List of specific table names to include, separated by commas' ,
212212 onChange : ( value , state ) => {
213213 profilingTableSet . val = value ;
214214 options . setValidity ?. ( 'profiling_table_set' , state . valid ) ;
@@ -225,7 +225,7 @@ const MainForm = (
225225 label : 'Schema' ,
226226 value : tableGroupSchema ,
227227 height : 38 ,
228- help : 'The database schema containing the tables in the Table Group' ,
228+ help : 'Database schema containing the tables for the Table Group' ,
229229 helpPlacement : 'bottom-left' ,
230230 onChange : ( value , state ) => {
231231 tableGroupSchema . val = value ;
@@ -235,21 +235,21 @@ const MainForm = (
235235 } ) ,
236236 Input ( {
237237 name : 'profile_id_column_mask' ,
238- label : 'Profiling ID column mask ' ,
238+ label : 'Profiling ID Column Mask ' ,
239239 value : profileIdColumnMask ,
240240 height : 38 ,
241- help : 'A SQL filter supported by your database\'s LIKE operator representing ID columns (optional)' ,
241+ help : 'SQL filter supported by your database\'s LIKE operator representing ID columns (optional)' ,
242242 onChange : ( value , state ) => {
243243 profileIdColumnMask . val = value ;
244244 options . setValidity ?. ( 'profile_id_column_mask' , state . valid ) ;
245245 } ,
246246 } ) ,
247247 Input ( {
248248 name : 'profile_sk_column_mask' ,
249- label : 'Profiling Surrogate Key column mask ' ,
249+ label : 'Profiling Surrogate Key Column Mask ' ,
250250 value : profileSkColumnMask ,
251251 height : 38 ,
252- help : 'A SQL filter supported by your database\'s LIKE operator representing surrogate key columns (optional)' ,
252+ help : 'SQL filter supported by your database\'s LIKE operator representing surrogate key columns (optional)' ,
253253 onChange : ( value , state ) => {
254254 profileSkColumnMask . val = value
255255 options . setValidity ?. ( 'profile_sk_column_mask' , state . valid ) ;
@@ -258,10 +258,10 @@ const MainForm = (
258258 Input ( {
259259 name : 'profiling_delay_days' ,
260260 type : 'number' ,
261- label : 'Min Profiling Age, Days ' ,
261+ label : 'Min Profiling Age (in days) ' ,
262262 value : profilingDelayDays ,
263263 height : 38 ,
264- help : 'The number of days to wait before new profiling will be available to generate tests' ,
264+ help : 'Number of days to wait before new profiling will be available to generate tests' ,
265265 onChange : ( value , state ) => {
266266 profilingDelayDays . val = value ;
267267 options . setValidity ?. ( 'profiling_delay_days' , state . valid ) ;
@@ -288,7 +288,7 @@ const SamplingForm = (
288288 Checkbox ( {
289289 name : 'profile_use_sampling' ,
290290 label : 'Use profile sampling' ,
291- help : 'Toggle on to base profiling on a sample of records instead of the full table' ,
291+ help : 'When checked, profiling will be based on a sample of records instead of the full table' ,
292292 checked : profileUseSampling ,
293293 onChange : ( value ) => profileUseSampling . val = value ,
294294 } ) ,
@@ -303,7 +303,7 @@ const SamplingForm = (
303303 label : 'Sample percent' ,
304304 value : profileSamplePercent ,
305305 height : 38 ,
306- help : 'Percent of records to include in the sample, unless the calculated count falls below the specified minimum. ' ,
306+ help : 'Percent of records to include in the sample, unless the calculated count falls below the specified minimum' ,
307307 onChange : ( value , state ) => {
308308 profileSamplePercent . val = value ;
309309 options . setValidity ?. ( 'profile_sample_percent' , state . valid ) ;
@@ -316,7 +316,7 @@ const SamplingForm = (
316316 label : 'Min Sample Record Count' ,
317317 value : profileSampleMinCount ,
318318 height : 38 ,
319- help : 'The minimum number of records to be included in any sample (if available)' ,
319+ help : 'Minimum number of records to be included in any sample (if available)' ,
320320 onChange : ( value , state ) => {
321321 profileSampleMinCount . val = value ;
322322 options . setValidity ?. ( 'profile_sample_min_count' , state . valid ) ;
0 commit comments