@asd20/ui 3.2.414 → 3.2.415

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.414",
8
+ "version": "3.2.415",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -23,13 +23,6 @@
23
23
  <h2 class="name">{{ event.summary }}</h2>
24
24
  </header>
25
25
  <Asd20List class="description">
26
- <Asd20ListItem
27
- icon="map"
28
- icon-size="lg"
29
- v-if="event.location"
30
- label="Location"
31
- :description="event.location"
32
- />
33
26
  <Asd20ListItem
34
27
  v-if="time"
35
28
  icon="hours-alt"
@@ -37,6 +30,13 @@
37
30
  label="Time"
38
31
  :description="time"
39
32
  />
33
+ <Asd20ListItem
34
+ icon="map"
35
+ icon-size="lg"
36
+ v-if="event.location"
37
+ label="Location"
38
+ :description="event.location"
39
+ />
40
40
  <Asd20ListItem
41
41
  v-if="event.description"
42
42
  label="Description"
@@ -37,7 +37,7 @@ export default function mapEventToCard(event) {
37
37
  // subtitle: 'Some subtitle goes here',
38
38
  description: event.description,
39
39
  categories: event.calendarCategories.concat([event.calendarName]),
40
- date: format(event.start, 'MMM, D YYYY'),
40
+ date: format(event.start),
41
41
  time: formattedTime(event),
42
42
  weekday: event.weekday,
43
43
  day: event.day,