Skip to content

Commit cc82cbb

Browse files
fix: resolve issue where crossVersionUpdate setting not taking effect
1 parent 191396c commit cc82cbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

agent/app/dto/app.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,15 @@ type AppProperty struct {
9292
Description Locale `json:"description"`
9393
Key string `json:"key"`
9494
Required []string `json:"Required"`
95-
CrossVersionUpdate bool `json:"crossVersionUpdate"`
95+
CrossVersionUpdate bool `json:"crossVersionUpdate" yaml:"crossVersionUpdate"`
9696
Limit int `json:"limit" yaml:"limit"`
9797
Recommend int `json:"recommend" yaml:"recommend"`
9898
Website string `json:"website"`
9999
Github string `json:"github"`
100100
Document string `json:"document"`
101101
Architectures []string `json:"architectures"`
102102
MemoryRequired int `json:"memoryRequired" yaml:"memoryRequired"`
103-
GpuSupport bool `json:"gpuSupport"`
103+
GpuSupport bool `json:"gpuSupport" yaml:"gpuSupport"`
104104
Version float64 `json:"version"`
105105
Deprecated float64 `json:"deprecated"`
106106
}

0 commit comments

Comments
 (0)