diff --git a/d2plugin/exec.go b/d2plugin/exec.go index acb8a9618..efbfcd970 100644 --- a/d2plugin/exec.go +++ b/d2plugin/exec.go @@ -82,6 +82,8 @@ func (p *execPlugin) HydrateOpts(opts []byte) error { allString[k] = vt case int64: allString[k] = strconv.Itoa(int(vt)) + case float64: + allString[k] = strconv.Itoa(int(vt)) } }