diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-17 20:59:03 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-17 20:59:03 -0700 |
commit | 5bd9f33df927c55448f08f2cc847c1b0432993f5 (patch) | |
tree | 09c5803e50d2ea7a54d7934fe0756c7b32392b78 /management/editor/editor.go | |
parent | cc61653bc4cc23e29817a035514adf428607ea84 (diff) |
renaming Time input element to Timestamp to be more specific, also fixing default inputs to reflect new element
Diffstat (limited to 'management/editor/editor.go')
-rw-r--r-- | management/editor/editor.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/management/editor/editor.go b/management/editor/editor.go index 2c51d5d..dc6f181 100644 --- a/management/editor/editor.go +++ b/management/editor/editor.go @@ -147,13 +147,13 @@ func addPostDefaultFieldsToEditorView(p Editable, e *Editor) { }), }, Field{ - View: Input("Timestamp", p, map[string]string{ + View: Timestamp("Timestamp", p, map[string]string{ "type": "hidden", "class": "timestamp __ponzu", }), }, Field{ - View: Input("Updated", p, map[string]string{ + View: Timestamp("Updated", p, map[string]string{ "type": "hidden", "class": "updated __ponzu", }), |