@sigmaott/base-next 1.4.16 → 1.4.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -115,7 +115,7 @@ async function onLoadPath() {
|
|
|
115
115
|
machineId: serverConfig?.machineId,
|
|
116
116
|
machineType: serverConfig?.machineType,
|
|
117
117
|
mode: serverConfig?.mode,
|
|
118
|
-
specMachineId: input.value?.machineConfig
|
|
118
|
+
specMachineId: input.value?.machineConfig?.specMachineId || undefined,
|
|
119
119
|
},
|
|
120
120
|
path: formPathValue.value.path,
|
|
121
121
|
})
|
|
@@ -177,8 +177,8 @@ async function handleSelectConfig(id: string) {
|
|
|
177
177
|
bchValue.value = config.bch || defaultTableForensic.value[0].bch
|
|
178
178
|
|
|
179
179
|
defaultTableForensic.value[0].wm = config.wm
|
|
180
|
-
defaultTableForensic.value[0].wmB = config.wmB
|
|
181
|
-
defaultTableForensic.value[0].alpha = config.alpha
|
|
180
|
+
defaultTableForensic.value[0].wmB = config.wmB || '0xff'
|
|
181
|
+
defaultTableForensic.value[0].alpha = config.alpha || 0.15
|
|
182
182
|
defaultTableForensic.value[0].crc = config.crc
|
|
183
183
|
defaultTableForensic.value[0].step = config.step
|
|
184
184
|
defaultTableForensic.value[0].bch = config.bch
|
|
@@ -75,7 +75,7 @@ const loadPathPlayoutMutation = useMutation(
|
|
|
75
75
|
(payload: {
|
|
76
76
|
machineConfig: any
|
|
77
77
|
path: string
|
|
78
|
-
}) => $playoutApi('/api/playout/
|
|
78
|
+
}) => $playoutApi('/api/playout/ai-model/pte-info-model', {
|
|
79
79
|
body: {
|
|
80
80
|
...payload.machineConfig,
|
|
81
81
|
path: payload.path,
|