File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
blueprints-integration/src Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,10 @@ export interface UserEditingDefinitionSourceLayerForm {
5858 /** The json schemas describing the form to display */
5959 schemas : Record < string , UserEditingSourceLayer >
6060 /** Current values to populate the form with */
61- currentValues : Record < string , any >
61+ currentValues : {
62+ type : SourceLayerType
63+ value : Record < string , any >
64+ }
6265}
6366
6467export enum UserEditingType {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import type {
44 JSONSchema ,
55 UserEditingSourceLayer ,
66 UserEditingButtonType ,
7+ SourceLayerType ,
78} from '@sofie-automation/blueprints-integration'
89import type { ITranslatableMessage } from '../TranslatableMessage'
910
@@ -60,5 +61,8 @@ export interface CoreUserEditingDefinitionSourceLayerForm {
6061 /** Translation namespaces to use when rendering this form */
6162 translationNamespaces : string [ ]
6263 /** Current values to populate the form with */
63- currentValues : Record < string , any >
64+ currentValues : {
65+ type : SourceLayerType
66+ value : Record < string , any >
67+ }
6468}
You can’t perform that action at this time.
0 commit comments