🔨 Add tap.dashboard.streamingType helm value (#1783)

* 🔨 Add `tap.dashboard.streamingType` helm value

* 🔨 Add `streamingType` to tap config

* 🔨 Adjust `REACT_APP_STREAMING_TYPE` front env value

* 🔨 Use default empty string for `streamingType` value
This commit is contained in:
Serhii Ponomarenko
2025-09-02 20:43:38 +03:00
committed by GitHub
parent 88f43b94d9
commit 349d8b07df
2 changed files with 4 additions and 1 deletions

View File

@@ -198,7 +198,8 @@ type RoutingConfig struct {
}
type DashboardConfig struct {
CompleteStreamingEnabled bool `yaml:"completeStreamingEnabled" json:"completeStreamingEnabled" default:"true"`
StreamingType string `yaml:"streamingType" json:"streamingType" default:""`
CompleteStreamingEnabled bool `yaml:"completeStreamingEnabled" json:"completeStreamingEnabled" default:"true"`
}
type FrontRoutingConfig struct {