diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt
index 1095e1cf..ebcdd5a3 100644
--- a/ayanova/devdocs/todo.txt
+++ b/ayanova/devdocs/todo.txt
@@ -44,7 +44,7 @@ todo: Localize this message or get rid of it, it's annoying and possibly useless
##########################
todo: ops backup file list not in order by date, seems to be random or something, I want newest at top oldest at bottom
-
+todo: any use of simple-table sb turned into data-table see how it's done in ops-notify-queue, pretty straightforward and you get responsiveness and sorting built in
todo: go over server logging and rethink it a bit, levels maybe need adjusting, more debug and less trace
need an intermediate mode where users can set it for diagnosing issues
for example, should always log when notification delivery fails, but when it succeeds that might be a debug level , not a trace level
diff --git a/ayanova/src/App.vue b/ayanova/src/App.vue
index 19bcda63..59ffefd6 100644
--- a/ayanova/src/App.vue
+++ b/ayanova/src/App.vue
@@ -348,7 +348,7 @@ export default {
} else {
//this can be safely called any time, it checks if there is an open object in store and
//opens it or if not just returns
- // window.$gz.eventBus.$emit("openobject", null);
+ // window.$gz.eventBus.$emit("openobject", null);
}
//RELOAD / REFRESH HANDLING
diff --git a/ayanova/src/views/ops-notify-queue.vue b/ayanova/src/views/ops-notify-queue.vue
index af68f407..5545a70e 100644
--- a/ayanova/src/views/ops-notify-queue.vue
+++ b/ayanova/src/views/ops-notify-queue.vue
@@ -5,33 +5,21 @@
fa-sync
-
-
-
-
- | {{ $ay.t("TimeStamp") }} |
- {{ $ay.t("DeliverAfter") }} |
- {{ $ay.t("NotifyEventType") }} |
- {{ $ay.t("AyaType") }} |
- {{ $ay.t("Name") }} |
- {{ $ay.t("User") }} |
-
-
-
-
- | {{ item.created }} |
- {{ item.deliverAfter }} |
- {{ item.eventType }} |
- {{ item.ayaType }} |
- {{ item.name }} |
- {{ item.user }} |
-
- fa-trash
- |
-
-
-
-
+
+
+
+
+ fa-trash
+
+
@@ -67,6 +55,19 @@ export default {
return {
obj: [],
rawObj: [],
+ headers: [
+ {
+ text: this.$ay.t("TimeStamp"),
+ align: "start",
+ value: "created"
+ },
+ { text: this.$ay.t("DeliverAfter"), value: "deliverAfter" },
+ { text: this.$ay.t("NotifyEventType"), value: "eventType" },
+ { text: this.$ay.t("AyaType"), value: "ayaType" },
+ { text: this.$ay.t("Name"), value: "name" },
+ { text: this.$ay.t("User"), value: "user" },
+ { text: "", value: "actions", sortable: false }
+ ],
formState: {
ready: false,
loading: true,
@@ -86,6 +87,7 @@ export default {
window.$gz.eventBus.$off("menu-click", clickHandler);
},
methods: {
+ deleteItem(item) {},
async getDataFromApi() {
let vm = this;
vm.formState.loading = true;