mirror of
https://github.com/m1ngsama/FUJI.git
synced 2025-12-24 10:51:27 +00:00
Merge pull request #102 from wen-templari/fix/schedule-loading-race-condition
Fix schedule loading race condition causing event flash
This commit is contained in:
commit
a0aaf4984a
1 changed files with 1 additions and 1 deletions
|
|
@ -317,7 +317,7 @@ export default function Schedule() {
|
|||
<span className="text-sm text-gray-600">{formatTimePair(event.start, event.end)}</span>
|
||||
{
|
||||
event.description && (
|
||||
<p className="mt-2">{event.description}</p>
|
||||
<p className="mt-2 whitespace-pre-wrap">{event.description}</p>
|
||||
)
|
||||
}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue