1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

Removes name from menus

This commit is contained in:
Amir Raminfar
2022-04-19 15:12:08 -07:00
parent 5b15fc2972
commit 038e2dee88
3 changed files with 3 additions and 11 deletions

View File

@@ -88,7 +88,7 @@ const results = computed(() => {
onMounted(() => nextTick(() => autocomplete.value?.focus()));
function selected(item: { id: string; name: string }) {
router.push({ name: "container", params: { id: item.id, name: item.name } });
router.push({ name: "container", params: { id: item.id } });
emit("close");
}
function addColumn(container: Container) {