Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Fix missing consoles.v1.3 #102

Merged
merged 2 commits into from
Nov 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/public/kubevirt/components/vm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -253,12 +253,12 @@ const Details = ({obj: vm}) => {

export const VirtualMachinesDetailsPage = props => {
const pages = [navFactory.details(Details)];
pages.push({ // TODO: might be moved based on review; or display conditionally if VM is running?
pages.push(navFactory.editYaml());
pages.push({
href: 'consoles',
name: 'Consoles',
component: VmConsolesConnected
});
pages.push(navFactory.editYaml());
return (
<DetailsPage
{...props}
Expand Down Expand Up @@ -379,7 +379,7 @@ export const VirtualMachinesPage = connect(
ListComponent={VMList}
createProps={this.createProps}
rowFilters={filters}
/>;
/>
</React.Fragment>;
}
});