Skip to content

Commit

Permalink
style: calendar select flex
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismclarke committed Nov 23, 2023
1 parent 4f5adf3 commit e261252
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h2>Calendar Lists</h2>
<!-- map calenders -->
<div *ngIf="dbCalendars.length > 0" class="items-container">
<div *ngFor="let calendar of dbCalendars; let i = index" class="calendars-display">
<div (click)="editMode !== i ? redirectToCalendarTable(calendar.ID, i) : null">
<div (click)="editMode !== i ? redirectToCalendarTable(calendar.ID, i) : null" style="flex: 1">
<div *ngIf="editMode !== i; else editField">
{{ calendar.name }}
</div>
Expand Down

0 comments on commit e261252

Please sign in to comment.