There was an error while loading. Please reload this page.
1 parent 73461b5 commit 1b6200dCopy full SHA for 1b6200d
1 file changed
client_v2/src/components/Dhcp/Dhcp.tsx
@@ -108,7 +108,7 @@ export const Dhcp = () => {
108
<div class={theme.layout.container}>
109
<div class={cn(theme.layout.containerIn, theme.layout.containerIn_one_col)}>
110
<Show when={isLoaded()} fallback={<PageLoader />}>
111
- <Show when={dhcpState.dhcp_available}>
+ <Show when={!dhcpState.dhcp_available}>
112
<div class={s.unavailable}>
113
<h1
114
class={cn(
@@ -126,7 +126,7 @@ export const Dhcp = () => {
126
</div>
127
</Show>
128
129
- <Show when={!dhcpState.dhcp_available}>
+ <Show when={dhcpState.dhcp_available}>
130
<div class={s.header}>
131
132
0 commit comments