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

Commit

Permalink
Fix: VM Detail broken tabs
Browse files Browse the repository at this point in the history
By 3197846, the order of primary and secondary
tabs is changed. The primary ones must be listed beofre others.
  • Loading branch information
mareklibra committed Nov 8, 2018
1 parent 332f074 commit c56d661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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

0 comments on commit c56d661

Please sign in to comment.