diff --git a/ayanova/src/views/home-schedule.vue b/ayanova/src/views/home-schedule.vue
index 52884203..e38cec09 100644
--- a/ayanova/src/views/home-schedule.vue
+++ b/ayanova/src/views/home-schedule.vue
@@ -67,7 +67,9 @@
@change="fetchEvents"
>
- $ayiTools
+ {{
+ iconForEvent(event.type)
+ }}
@@ -81,20 +83,19 @@
- $ayiEdit
+ {{ iconForSelectedEvent() }}
{{ selectedEvent.name }}
-
+
{{ selectedEvent }}
-
@@ -159,8 +160,7 @@ SETTINGS:
TODO NEXT:
- correct date/time adjusted (doesn't seem to be)
- make popup clickthrough to open wo just so make life easier for me testing and adjusting
+ Summary info to display for woitem when open dialog
settings / saving as form settings
use translations where possible
@@ -236,6 +236,12 @@ export default {
next() {
this.$refs.calendar.next();
},
+ iconForSelectedEvent() {
+ return window.$gz.util.iconForType(this.selectedEvent.type);
+ },
+ iconForEvent(type) {
+ return window.$gz.util.iconForType(type);
+ },
openScheduledItem() {
window.$gz.eventBus.$emit("openobject", {
type: this.selectedEvent.type,