소스 검색

fix: required yaml inline tag for alias of ModelCredentialOption

Yeuoly 8 달 전
부모
커밋
94f176b3a5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      internal/types/entities/plugin_entities/model_declaration.go

+ 1 - 1
internal/types/entities/plugin_entities/model_declaration.go

@@ -482,7 +482,7 @@ func (m *ModelProviderFormOption) UnmarshalYAML(value *yaml.Node) error {
 	// avoid show_on to be nil
 	type Alias ModelProviderFormOption
 	aux := &struct {
-		*Alias
+		*Alias `yaml:",inline"`
 	}{
 		Alias: (*Alias)(m),
 	}