You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while (auto_row_Error==TRUE|auto_row_OutOfRange==TRUE) {
209
+
auto_row_InRange<-TRUE
210
+
while (auto_row_Error==TRUE|auto_row_InRange==FALSE) {
211
+
if (auto_row_InRange==FALSE) {
212
+
cli_alert_danger('The row numbers you provided are not in range. Reference the auto categorised row numbers on the screen and try again')}
209
213
tryCatch({
210
214
cat("\n\n");
211
215
cli_alert_info("Press enter to accept the auto categorisations for table {meta_json$dataModel$childDataClasses[[dc]]$label} or enter each row you'd like to edit:");
error=function(e) {auto_row_Error<-TRUE; print(e); cat("\n"); cli_alert_danger('Your input is in the wrong format, reference the row numbers and try again')})
while (not_auto_row_Error==TRUE|not_auto_row_OutOfRange==TRUE) {
250
+
not_auto_row_InRange<-TRUE
251
+
while (not_auto_row_Error==TRUE|not_auto_row_InRange==FALSE) {
252
+
if (not_auto_row_InRange==FALSE) {
253
+
cli_alert_danger('The row numbers you provided are not in range. Reference the row numbers on the screen and try again')}
248
254
tryCatch({
249
255
cat("\n\n");
250
256
cli_alert_info("Press enter to accept your categorisations for table {meta_json$dataModel$childDataClasses[[dc]]$label} or enter each row you'd like to edit:");
error=function(e) {not_auto_row_Error<-TRUE; print(e); cat("\n"); cli_alert_danger('Your input is in the wrong format, reference the row numbers and try again')})
0 commit comments