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 d0ba8aa commit 6533c59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/public/kubevirt/components/vm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ export const VirtualMachinesDetailsPage = props => {
};
const pages = [
navFactory.details(Details),
navFactory.editYaml(),
consolePage,
navFactory.events(VmiEvents),
navFactory.editYaml()
];
return (
<DetailsPage
Expand Down

0 comments on commit 6533c59

Please sign in to comment.