Change summary
forms/admin_info.rb | 2 ++
forms/transactions.rb | 5 ++++-
2 files changed, 6 insertions(+), 1 deletion(-)
Detailed changes
@@ -27,6 +27,7 @@ if @admin_info.info.tel
field(
var: "tel_link",
label: "Phone Number Info",
+ datatype: "xs:anyURI",
value: @admin_info.tel_link
)
end
@@ -67,6 +68,7 @@ field(
field(
var: "support_link",
label: "Support Link",
+ datatype: "xs:anyURI",
value: @admin_info.support_link
)
@@ -5,5 +5,8 @@ table(
@transactions,
formatted_amount: "Amount",
note: "Note",
- created_at: "Date"
+ created_at: {
+ label: "Date",
+ datatype: "xs:dateTime"
+ }
)