This commit is contained in:
@@ -17,18 +17,15 @@
|
||||
:icon="getIconForEvent(i.event)"
|
||||
>
|
||||
<v-card>
|
||||
<v-card-title
|
||||
<v-card-title>{{ i.name }}</v-card-title>
|
||||
<v-card-subtitle
|
||||
>{{ i.date }} - {{ getEventName(i.event) }}</v-card-subtitle
|
||||
>
|
||||
<v-card-text
|
||||
><v-icon class="mr-4">{{
|
||||
getIconForObjectType(i.objectType)
|
||||
}}</v-icon
|
||||
><span class="mr-4"></span
|
||||
><span>{{ i.name }}</span></v-card-title
|
||||
>
|
||||
<v-card-subtitle>{{
|
||||
getNameForType(i.objectType)
|
||||
}}</v-card-subtitle>
|
||||
<v-card-text>
|
||||
<div>{{ i.date }} - {{ getEventName(i.event) }}</div>
|
||||
>{{ getNameForType(i.objectType) }}
|
||||
<div v-if="i.textra">{{ i.textra }}</div>
|
||||
</v-card-text>
|
||||
|
||||
@@ -224,6 +221,8 @@ export default {
|
||||
);
|
||||
|
||||
temp[i].index = currentEventCount + i;
|
||||
//test
|
||||
temp[i].textra = "This is some extra text. Blah blah blah blah.";
|
||||
}
|
||||
|
||||
vm.obj = [...vm.obj, ...temp];
|
||||
|
||||
Reference in New Issue
Block a user