Skip to content

Commit a9c1b24

Browse files
Include missing class to make questionnaires sortable
1 parent 4b6d0a4 commit a9c1b24

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# frozen_string_literal: true
2+
3+
Deface::Override.new(
4+
virtual_path: "decidim/forms/admin/questionnaires/_question",
5+
name: "add_sortable_to_question",
6+
add_to_attributes: "div.card-divider",
7+
original: "ef8357c1edb2c62d7e994cdd0dc7ae00a9f38f29",
8+
attributes: { class: "question-divider" }
9+
)
10+
11+
Deface::Override.new(
12+
virtual_path: "decidim/forms/admin/questionnaires/_separator",
13+
name: "add_sortable_to_separator",
14+
add_to_attributes: "div.card-divider",
15+
original: "8c8187cdecc37c3c1c7504d298a6b40e1912b9b9",
16+
attributes: { class: "question-divider" }
17+
)
18+
19+
Deface::Override.new(
20+
virtual_path: "decidim/forms/admin/questionnaires/_title_and_description",
21+
name: "add_sortable_to_title_and_description",
22+
add_to_attributes: "div.card-divider",
23+
original: "71be165099cc0d2bc000bed6281b81d427f2d578",
24+
attributes: { class: "question-divider" }
25+
)
26+
27+
Deface::Override.new(
28+
virtual_path: "decidim/meetings/admin/poll/_question",
29+
name: "add_sortable_to_poll_question",
30+
add_to_attributes: "div.card-divider",
31+
original: "76f4bc9860f4bc088c60d035551a695828d2b209",
32+
attributes: { class: "question-divider" }
33+
)

0 commit comments

Comments
 (0)