diff --git a/config.yaml b/config.yaml
index b41ab82..c50b2df 100644
--- a/config.yaml
+++ b/config.yaml
@@ -118,7 +118,7 @@ actions:
# Docs: https://docs.olivetin.app/solutions/container-control-panel/index.html
- title: Restart Docker Container
icon: restart
- shell: docker restart {{ .CurrentEntity }}
+ shell: docker restart {{ container }}
arguments:
- name: container
title: Container name
diff --git a/frontend/resources/vue/components/ChoiceCombobox.vue b/frontend/resources/vue/components/ChoiceCombobox.vue
new file mode 100644
index 0000000..e2488b9
--- /dev/null
+++ b/frontend/resources/vue/components/ChoiceCombobox.vue
@@ -0,0 +1,337 @@
+
+
+
+
+
+ -
+ {{ choiceLabel(choice) }}
+
+
+
+ No matching options
+
+
+
+
+
+
+
diff --git a/frontend/resources/vue/views/ArgumentForm.vue b/frontend/resources/vue/views/ArgumentForm.vue
index 4ccd463..f62bf89 100644
--- a/frontend/resources/vue/views/ArgumentForm.vue
+++ b/frontend/resources/vue/views/ArgumentForm.vue
@@ -21,12 +21,9 @@
-
+
{
+ const lists = await comboboxes[0].findElements(By.css('.choice-combobox-list li'))
+ return lists.length === 2
+ }), 2000)
+
+ await firstInput.sendKeys(Key.TAB)
+
+ await webdriver.wait(new Condition('wait for second combobox list', async () => {
+ const lists = await comboboxes[1].findElements(By.css('.choice-combobox-list li'))
+ return lists.length === 3
+ }), 2000)
})
})