Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swap around host device and net name #74

Merged
merged 4 commits into from
Oct 21, 2024
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
11 changes: 6 additions & 5 deletions unikernel_single.ml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ let unikernel_single_layout ~csrf unikernel now console_output =
text-primary-600 uppercase";
];
]
[ txt "Host device" ];
[ txt "Unikernel block device" ];
PizieDust marked this conversation as resolved.
Show resolved Hide resolved
th
~a:
[
Expand All @@ -233,7 +233,7 @@ let unikernel_single_layout ~csrf unikernel now console_output =
text-primary-600 uppercase";
];
]
[ txt "Name" ];
[ txt "Host device" ];
th
~a:
[
Expand Down Expand Up @@ -273,7 +273,8 @@ let unikernel_single_layout ~csrf unikernel now console_output =
];
]
[
txt (Option.value device ~default:"");
txt
(Option.value device ~default:name);
];
td
~a:
Expand Down Expand Up @@ -325,7 +326,7 @@ let unikernel_single_layout ~csrf unikernel now console_output =
text-primary-600 uppercase";
];
]
[ txt "Host device" ];
[ txt "Unikernel network device" ];
PizieDust marked this conversation as resolved.
Show resolved Hide resolved
th
~a:
[
Expand All @@ -336,7 +337,7 @@ let unikernel_single_layout ~csrf unikernel now console_output =
text-primary-600 uppercase";
];
]
[ txt "Name" ];
[ txt "Host device" ];
th
~a:
[
Expand Down
Loading