Misma bug que anterior.

This commit is contained in:
2024-01-19 14:24:30 +01:00
parent b01f7bb11d
commit fe865f55e4
+2 -2
View File
@@ -464,7 +464,7 @@ server <- function(input, output) {
Volume=0,
Observations=""
)
if (!(0 %in% table$DayPostInoc) | sum(table[test$DayPostInoc == 0,"Volume"],na.rm = T) == 0){
if (!(0 %in% table$DayPostInoc) | sum(table[table$DayPostInoc == 0,"Volume"],na.rm = T) == 0){
table<-rbind(table, basal)
}
@@ -542,7 +542,7 @@ server <- function(input, output) {
Volume=0,
Observations=""
)
if (!(0 %in% table$DayPostInoc) | sum(test[table$DayPostInoc == 0,"Volume"],na.rm = T) == 0){
if (!(0 %in% table$DayPostInoc) | sum(table[table$DayPostInoc == 0,"Volume"],na.rm = T) == 0){
table<-rbind(table, basal)
}