File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def perform
26
26
def params
27
27
{
28
28
"css" => "{}" ,
29
- "dashboard_title" => "#{ source_dashboard . title } (COPY) " ,
29
+ "dashboard_title" => "#{ source_dashboard . title } " ,
30
30
"duplicate_slices" => duplicate_slices ,
31
31
"json_metadata" => new_dashboard_json_metadata . to_json ,
32
32
}
Original file line number Diff line number Diff line change 70
70
specify 'are placed in the json_metadata' do
71
71
expect ( subject . params ) . to eq ( {
72
72
"css" => "{}" ,
73
- "dashboard_title" => "My Dashboard (COPY) " ,
73
+ "dashboard_title" => "My Dashboard" ,
74
74
"duplicate_slices" => true ,
75
75
"json_metadata" => { "key1" => "value1" ,
76
76
"shared_label_colors" => { "Kitchen Crew" => "#1FA8C9" } ,
85
85
specify 'are cleared when option is true' do
86
86
expect ( subject . params ) . to eq ( {
87
87
"css" => "{}" ,
88
- "dashboard_title" => "My Dashboard (COPY) " ,
88
+ "dashboard_title" => "My Dashboard" ,
89
89
"duplicate_slices" => true ,
90
90
"json_metadata" => { "key1" => "value1" ,
91
91
"shared_label_colors" => { } ,
You can’t perform that action at this time.
0 commit comments