-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Events calendar update: Don't request location every wp api event lik…
…e an idiot, update character set for more text fields, update styling for better readability
- Loading branch information
1 parent
7f3394c
commit b791ec8
Showing
4 changed files
with
82 additions
and
13 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
events/migrations/0005_alter_event_address_alter_event_host_and_more.py
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 4.2 on 2024-09-12 06:30 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('events', '0004_event_hash'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='event', | ||
name='address', | ||
field=models.CharField(blank=True, db_collation='utf8mb4_general_ci', max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='event', | ||
name='host', | ||
field=models.CharField(blank=True, db_collation='utf8mb4_general_ci', max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='event', | ||
name='location', | ||
field=models.CharField(blank=True, db_collation='utf8mb4_general_ci', max_length=255, null=True), | ||
), | ||
] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -327,6 +327,7 @@ function EventsCalendar({events}) { | |
hosts.push(event.host); | ||
} | ||
} | ||
hosts.sort(); | ||
return hosts; | ||
} | ||
|
||
|
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