(cmd: QueuedCommand)
| 366 | * sees what arrived) but stay non-editable (raw XML). |
| 367 | */ |
| 368 | export function isQueuedCommandVisible(cmd: QueuedCommand): boolean { |
| 369 | if ( |
| 370 | (feature('KAIROS') || feature('KAIROS_CHANNELS')) && |
| 371 | cmd.origin?.kind === 'channel' |
| 372 | ) |
| 373 | return true |
| 374 | return isQueuedCommandEditable(cmd) |
| 375 | } |
| 376 | |
| 377 | /** |
| 378 | * Extract text from a queued command value. |
nothing calls this directly
no test coverage detected