What you can do is with the help of lapply function you can loop the lists and can easily eliminate the text after T.
Let us say the list is called list_df, the rest of the code is as follows:
list_df <- lapply(list_df, function(x) {x$time <- sub('T.*', '', x$time);x})
If you are a beginner and want to know more about R Programming then do check out the following R programming tutorial that will help you in learning R from scratch.