-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OTWO-7263 Fix conflicting css class (#1791)
- Loading branch information
Showing
3 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
app/views/oh_admin/dashboard/_accounts_trend_graph.html.haml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
:ruby | ||
chart_path = charts_oh_admin_accounts_path.to_s | ||
|
||
#three_months.account | ||
#three_months.account_admin_view | ||
%h1 3 Months Accounts Creation Trend | ||
.chart{ 'datasrc' => chart_path + '?period=3' + '&filter_by=weekly' } | ||
|
||
#six_months.account | ||
#six_months.account_admin_view | ||
%h1 6 Months Accounts Creation Trend | ||
.chart{ 'datasrc' => chart_path + '?period=6' + '&filter_by=weekly'} | ||
|
||
#one_year.account | ||
#one_year.account_admin_view | ||
%h1 1 Year Accounts Creation Trend | ||
.chart{ 'datasrc' => chart_path + '?period=12' + '&filter_by=weekly'} | ||
|
||
#three_months_monthly.account | ||
#three_months_monthly.account_admin_view | ||
%h1 3 Months Accounts Creation Trend | ||
.chart{ 'datasrc' => chart_path + '?period=3' + '&filter_by=monthly'} | ||
|
||
#six_months_monthly.account | ||
#six_months_monthly.account_admin_view | ||
%h1 6 Months Accounts Creation Trend | ||
.chart{ 'datasrc' => chart_path + '?period=6' + '&filter_by=monthly'} | ||
|
||
#one_year_monthly.account | ||
#one_year_monthly.account_admin_view | ||
%h1 1 Year Accounts Creation Trend | ||
.chart{ 'datasrc' => chart_path + '?period=12' + '&filter_by=monthly'} |