diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt
index 418ea68e..0553c134 100644
--- a/ayanova/devdocs/todo.txt
+++ b/ayanova/devdocs/todo.txt
@@ -42,7 +42,7 @@ CURRENT ROADMAP
CURRENT TODOs
=-=-=-=-=-=-=
-
+todo: post to server
todo: about link is showing on about form
TODO: No way to make a new widget now!!!
TODO: save (post) of new record at client triggers renavigation to that page again which also triggers fetch
diff --git a/ayanova/src/components/gz-data-table.vue b/ayanova/src/components/gz-data-table.vue
index 232b0c8e..ec869840 100644
--- a/ayanova/src/components/gz-data-table.vue
+++ b/ayanova/src/components/gz-data-table.vue
@@ -76,12 +76,17 @@
-
+ {{ c.v }}
+
+
{{ c.v }}
@@ -222,12 +227,18 @@
-
+ {{ c.v }}
+
+
{{ c.v }}
@@ -352,7 +363,7 @@ export default {
getHeaderText(key) {
//key format is row-column e.g."500-2"
var columnIndex = key.split("-")[1];
- var header = this.headers[columnIndex - 1];
+ var header = this.headers[columnIndex];
if (header && header.text) {
return header.text;
}