Updating the vnc and serial pages to use the blank parent

This still has a rendering issue when the page is loading but it's consistent with what's currently in prod.
This commit is contained in:
Cody Jackson 2024-10-03 14:51:46 -07:00 committed by Francesco Torchia
parent 5fe12be3eb
commit a6b32e40ad
No known key found for this signature in database
GPG Key ID: E6D011B7415D4393

View File

@ -23,14 +23,20 @@ const routes = [
component: HarvesterSupport,
},
{
name: `${ PRODUCT_NAME }-c-cluster-console-uid-serial`,
path: `/:product/c/:cluster/console/:uid/serial`,
component: HarvesterConsoleSerial,
route: {
name: `${ PRODUCT_NAME }-c-cluster-console-uid-serial`,
path: `/:product/c/:cluster/console/:uid/serial`,
component: HarvesterConsoleSerial,
},
parent: 'blank'
},
{
name: `${ PRODUCT_NAME }-c-cluster-console-uid-vnc`,
path: `/:product/c/:cluster/console/:uid/vnc`,
component: HarvesterConsoleVnc,
route: {
name: `${ PRODUCT_NAME }-c-cluster-console-uid-vnc`,
path: `/:product/c/:cluster/console/:uid/vnc`,
component: HarvesterConsoleVnc,
},
parent: 'blank'
},
{
name: `${ PRODUCT_NAME }-c-cluster-airgapupgrade`,