Skip to content

Commit

Permalink
fix: missing button restored, removed selected state from header (#2546)
Browse files Browse the repository at this point in the history
  • Loading branch information
rengare committed May 24, 2020
1 parent fff25f3 commit 387c4df
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -20,7 +20,6 @@
[compact]="compact"
[fdType]="'transparent'"
[attr.aria-label]="calendarI18nLabels.monthSelectionLabel + ' ' + monthLabel"
[attr.aria-selected]="isOnMonthView()"
(click)="processViewChange('month', $event)"
type="button"
>
Expand All @@ -33,7 +32,6 @@
[compact]="compact"
[fdType]="'transparent'"
[attr.aria-label]="calendarI18nLabels.yearSelectionLabel + ' ' + currentlyDisplayed.year"
[attr.aria-selected]="isOnYearView()"
(click)="processViewChange('year', $event)"
type="button"
>
Expand All @@ -44,12 +42,10 @@
<ng-container *ngIf="activeView === 'aggregatedYear' || activeView === 'year'">
<div class="fd-calendar__action">
<button
*ngIf="activeView === 'year'"
fd-button
[compact]="compact"
[fdType]="'transparent'"
[attr.aria-label]="calendarI18nLabels.yearSelectionLabel + ' ' + currentlyDisplayed.year"
[attr.aria-selected]="isOnYearView()"
(click)="processViewChange('aggregatedYear', $event)"
type="button"
>
Expand Down

0 comments on commit 387c4df

Please sign in to comment.