Map Devices for Playback Assign your connected devices to match the recorded devices. Only compatible devices are shown.
{#each recordedDevices as recordedDevice} {@const compatibleDevices = getCompatibleDevices(recordedDevice)} {@const currentSelected = selectedValues.get(recordedDevice.name)}

{recordedDevice.name}

{#each recordedDevice.capabilities as capability} {capability} {/each}
{#if compatibleDevices.length === 0}
No compatible devices
{:else} { handleDeviceSelect(recordedDevice.name, selected); }} > {#each compatibleDevices as device}
{device.name} {#if device.name === recordedDevice.name} {/if}
{/each}
{/if}
{/each} {#if recordedDevices.length === 0}
No devices in this recording
{/if}