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

@@ -52,8 +52,6 @@ CURRENT TODOs
todo: RECORD HISTORY (HAS OUTSTANDING ITEMS) todo: RECORD HISTORY (HAS OUTSTANDING ITEMS)
- finish up current large User log view - 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?
- Event type and date are kind of fucked being all grayed out and small, is that the "material" way? - 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? - 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)" :icon="getIconForEvent(i.event)"
> >
<v-card> <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">{{ ><v-icon class="mr-4">{{
getIconForObjectType(i.objectType) getIconForObjectType(i.objectType)
}}</v-icon }}</v-icon
><span class="mr-4"></span >{{ getNameForType(i.objectType) }}
><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>
<div v-if="i.textra">{{ i.textra }}</div> <div v-if="i.textra">{{ i.textra }}</div>
</v-card-text> </v-card-text>
@@ -224,6 +221,8 @@ export default {
); );
temp[i].index = currentEventCount + i; temp[i].index = currentEventCount + i;
//test
temp[i].textra = "This is some extra text. Blah blah blah blah.";
} }
vm.obj = [...vm.obj, ...temp]; vm.obj = [...vm.obj, ...temp];