diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 76df5cbe..501dcb7e 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -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? diff --git a/ayanova/src/views/ay-history.vue b/ayanova/src/views/ay-history.vue index 7be8e671..ba43ef44 100644 --- a/ayanova/src/views/ay-history.vue +++ b/ayanova/src/views/ay-history.vue @@ -17,18 +17,15 @@ :icon="getIconForEvent(i.event)" > - {{ i.name }} + {{ i.date }} - {{ getEventName(i.event) }} + {{ getIconForObjectType(i.objectType) }}{{ i.name }} - {{ - getNameForType(i.objectType) - }} - -
{{ i.date }} - {{ getEventName(i.event) }}
+ >{{ getNameForType(i.objectType) }}
{{ i.textra }}
@@ -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];