From 524e036411d1237c793bc7483456a57ac3726771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Podkalicki?= <38037054+PawelPodkalicki@users.noreply.github.com> Date: Thu, 6 Jun 2019 15:09:37 +0200 Subject: [PATCH 1/3] Fix invalid max-width for xxxl-up (#674) --- .../edit-campaign-additional-targeting.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/advertiser/edit-campaign/edit-campaign-additional-targeting/edit-campaign-additional-targeting.component.scss b/src/app/advertiser/edit-campaign/edit-campaign-additional-targeting/edit-campaign-additional-targeting.component.scss index 3032c2ea6..c3d7c602e 100644 --- a/src/app/advertiser/edit-campaign/edit-campaign-additional-targeting/edit-campaign-additional-targeting.component.scss +++ b/src/app/advertiser/edit-campaign/edit-campaign-additional-targeting/edit-campaign-additional-targeting.component.scss @@ -9,7 +9,7 @@ } @include media(xxxl-up) { - max-width: 200px; + max-width: 2000px; } } From cea9cb80135169833b522c27dc8817dbc4fe88c0 Mon Sep 17 00:00:00 2001 From: Meskat Date: Mon, 10 Jun 2019 16:20:39 +0200 Subject: [PATCH 2/3] PAN-406: User reports time filters (#675) --- src/app/admin/admin.module.ts | 3 +- .../user-reports/user-reports.component.html | 53 +++++++++++++++++-- .../user-reports/user-reports.component.scss | 26 ++++++++- .../user-reports/user-reports.component.ts | 26 +++++---- 4 files changed, 92 insertions(+), 16 deletions(-) diff --git a/src/app/admin/admin.module.ts b/src/app/admin/admin.module.ts index 4a579abd6..c824c801e 100644 --- a/src/app/admin/admin.module.ts +++ b/src/app/admin/admin.module.ts @@ -12,7 +12,7 @@ import { MatCheckboxModule, MatDividerModule, MatPaginatorModule, - MatExpansionModule + MatExpansionModule, MatDatepickerModule } from '@angular/material'; import { AppCommonModule } from 'common/common.module'; import { AdminRoutingModule } from './admin-routing.module'; @@ -52,6 +52,7 @@ import { ImpersonationService } from "../impersonation/impersonation.service"; MatPaginatorModule, MatExpansionModule, MatCheckboxModule, + MatDatepickerModule ], providers: [ AdminGuard, diff --git a/src/app/admin/user-reports/user-reports.component.html b/src/app/admin/user-reports/user-reports.component.html index 3ca4069ec..c1ec0986c 100644 --- a/src/app/admin/user-reports/user-reports.component.html +++ b/src/app/admin/user-reports/user-reports.component.html @@ -10,10 +10,55 @@

- - +
+ + + + +
{ - downloadCSVFile(data, this.from, this.to); + downloadCSVFile(data, from, to); }); } getReportPublishers() { - this.adminService.getReportPublishers(this.from, this.to) + const from = moment(this.from.value).format(); + const to = moment(this.to.value).format(); + this.adminService.getReportPublishers(from, to) .subscribe((data) => { - downloadCSVFile(data, this.from, this.to); + downloadCSVFile(data, from, to); }); } } From e5342b96f2b851b8ce42f187ff018d64bf238ec6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Zaremba?= Date: Wed, 12 Jun 2019 16:22:58 +0200 Subject: [PATCH 3/3] Changelog --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a141b8bc..b502bb420 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0] - 2019-06-12 +### Fixed +- Minor display issues + ## [0.10.0] - 2019-06-04 ### Added - Referrer link handling @@ -111,7 +115,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Advertiser features (Campaigns & Ads) - Publisher features (Sites & AdUnits) -[Unreleased]: https://github.com/adshares/adpanel/compare/v0.10.0...develop +[Unreleased]: https://github.com/adshares/adpanel/compare/v0.11.0...develop +[0.11.0]: https://github.com/adshares/adpanel/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/adshares/adpanel/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/adshares/adpanel/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/adshares/adpanel/compare/v0.7.3...v0.8.0