blob: 416634171db900f80efc40796e1f8f706aef8d71 [file] [log] [blame]
import { $$ } from '../../../infra-sk/modules/dom';
import './index';
import { DeviceEditorSk } from './device-editor-sk';
if (window.location.hash === '#preexisting') {
$$<DeviceEditorSk>('device-editor-sk')?.show({
id: ['skia-machine-001'],
gpu: ['some-gpu'],
cpu: ['x86', 'x86_64'],
}, 'root@skia-device-001');
} else if (window.location.hash === '#no_sshuserip') {
$$<DeviceEditorSk>('device-editor-sk')?.show({
id: ['skia-no-ssh-user-ip'],
gpu: ['this-gpu-should-not-display'],
cpu: ['x86', 'x86_64'],
}, '');
} else {
$$<DeviceEditorSk>('device-editor-sk')?.show({
id: ['skia-machine-001'],
}, '');
}