This commit is contained in:
2020-04-11 20:34:43 +00:00
parent ebb779a97a
commit adb386ca12
2 changed files with 9 additions and 12 deletions

View File

@@ -51,9 +51,7 @@ CURRENT TODOs
todo: RECORD HISTORY (HAS OUTSTANDING ITEMS)
- finish up current large User log view
- Needs a title or something, always in view, maybe in appbar at the top indicating who the record history is for
- Or maybe just fuck it put it into the cards redundantly?
- finish up current large User log view
- Event type and date are kind of fucked being all grayed out and small, is that the "material" way?
- what is the most important info and where should it go? Room for event type and date in title? Opposite in large view?

View File

@@ -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];