From 4950159144d4eb88765be506cd013f9d032a3696 Mon Sep 17 00:00:00 2001 From: Jannik Pulfer Date: Tue, 18 Feb 2025 12:57:55 +0100 Subject: [PATCH] Fix cv download --- app/views/people/export_cv/_export_form.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/people/export_cv/_export_form.html.haml b/app/views/people/export_cv/_export_form.html.haml index b55145199..733ed9aac 100644 --- a/app/views/people/export_cv/_export_form.html.haml +++ b/app/views/people/export_cv/_export_form.html.haml @@ -1,4 +1,4 @@ -= form_with(url: person_path(format: 'odt'), method: 'get', data: {controller: "skills-filter"}) do |f| += form_with(url: person_path(format: 'odt'), method: 'get', data: {controller: "skills-filter", turbo: false}) do |f| .mb-2.w-100 = f.label :location, class: "form-label w-100" = f.collection_select :location, BranchAdress.all, :id, :short_name, {selected: (BranchAdress.find_by(default_branch_adress: true) || BranchAdress.first).id}, class: "form-select w-100"