(
data: Partial<IPanelItem<string>>
)
| 120 | } |
| 121 | |
| 122 | private updateOutputProperty( |
| 123 | data: Partial<IPanelItem<string>> |
| 124 | ): IPanelItem | undefined { |
| 125 | const { PANEL_OUTPUT } = this.builtinService.getConstants(); |
| 126 | const truthData = pickBy(data, (item) => item !== undefined); |
| 127 | return this.update( |
| 128 | Object.assign(this.getPanel(PANEL_OUTPUT!), truthData) |
| 129 | ); |
| 130 | } |
| 131 | |
| 132 | public get outputEditorInstance() { |
| 133 | const { PANEL_OUTPUT } = this.builtinService.getConstants(); |
no test coverage detected