liquid_feedback_frontend
diff app/main/member/edit.lua @ 1644:678c7146f27b
Fixed cancel links in member setting views
| author | bsw |
|---|---|
| date | Tue Feb 09 21:20:01 2021 +0100 (2021-02-09) |
| parents | 3ab878ba277e |
| children | 7dcbcbf492e3 |
line diff
1.1 --- a/app/main/member/edit.lua Tue Feb 09 21:09:47 2021 +0100 1.2 +++ b/app/main/member/edit.lua Tue Feb 09 21:20:01 2021 +0100 1.3 @@ -97,12 +97,10 @@ 1.4 content = "" 1.5 } 1.6 slot.put(" ") 1.7 - ui.link{ 1.8 - attr = { 1.9 - class = "mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect", 1.10 - }, 1.11 - content = _"cancel", 1.12 - module = "member", view = "show", id = app.session.member.id 1.13 + ui.link { 1.14 + attr = { class = "mdl-button mdl-js-button" }, 1.15 + module = "member", view = "show", id = app.session.member_id, 1.16 + content = _"Cancel" 1.17 } 1.18 end } 1.19 end