This commit is contained in:
Marcin Tojek 2024-02-09 10:13:09 +01:00
parent 9e534c0be6
commit ecff0637c4
1 changed files with 0 additions and 4 deletions

View File

@ -736,10 +736,6 @@ export const updateTemplateSettings = async (
await expect(page).toHaveURL(`/templates/${templateName}/settings`);
for (const [key, value] of Object.entries(templateSettingValues)) {
// Skip max_port_share_level for now since the frontend is not yet able to handle it
if (key === "max_port_share_level") {
continue;
}
const labelText = capitalize(key).replace("_", " ");
await page.getByLabel(labelText, { exact: true }).fill(value);
}