Dashboard Migrations: V23 handle variable multi and current properties (#108937)

Co-authored-by: Ivan Ortega <ivanortegaalba@gmail.com>
This commit is contained in:
Haris Rozajac
2025-08-07 22:41:42 +00:00
committed by GitHub
co-authored by Ivan Ortega
parent a5abc6727f
commit 4b78e54304
7 changed files with 691 additions and 2 deletions
@@ -0,0 +1,9 @@
package utils
func IsArray(value interface{}) bool {
if value == nil {
return false
}
_, ok := value.([]interface{})
return ok
}