# HG changeset patch # User bsw # Date 1376251414 -7200 # Node ID 841d7f79f67de63ea65c3205479ab2ac98b7429e # Parent c547d1cce741439f3ed5ec85362bed42baba4ddd Fixed wrong usage of ui field helper diff -r c547d1cce741 -r 841d7f79f67d app/main/admin/cancel_issue.lua --- a/app/main/admin/cancel_issue.lua Sun Aug 11 21:57:38 2013 +0200 +++ b/app/main/admin/cancel_issue.lua Sun Aug 11 22:03:34 2013 +0200 @@ -9,7 +9,7 @@ module = "admin", view = "issue_delete", content = function() - ui.input{ label = _"Issue ID", name = "id" } + ui.field.text{ label = _"Issue ID", name = "id" } ui.submit{ text = _"Cancel issue" } end } @@ -27,7 +27,7 @@ view = "issue_delete", id = id, content = function() - ui.input{ label = _"Administraive notice", name = "id" } + ui.field.text{ label = _"Administraive notice", name = "id" } ui.submit{ text = _"Cancel issue now" } end }