We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2d7ede commit d9ecc61Copy full SHA for d9ecc61
1 file changed
src/components/NetworkPolicyCreatePage.tsx
@@ -251,8 +251,7 @@ export const NetworkPolicyCreatePage = ({
251
}
252
253
params.allow_all = formData.allow_all === "Yes";
254
- params.allow_devbox_to_devbox =
255
- formData.allow_devbox_to_devbox === "Yes";
+ params.allow_devbox_to_devbox = formData.allow_devbox_to_devbox === "Yes";
256
257
// For allowed_hostnames, always send the current list
258
// (empty array means no hostnames allowed)
@@ -276,9 +275,7 @@ export const NetworkPolicyCreatePage = ({
276
275
277
};
278
279
- const breadcrumbLabel = isEditMode
280
- ? initialPolicy?.name || "Edit"
281
- : "Create";
+ const breadcrumbLabel = isEditMode ? initialPolicy?.name || "Edit" : "Create";
282
const actionLabel = isEditMode ? "Edit" : "Create";
283
284
// Result screen
0 commit comments