diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-07-23 17:43:04 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-07-23 17:43:04 +0200 |
commit | 65a821b404a610251e6118cf046aabf02f828718 (patch) | |
tree | 925caccabd5e4411a4e1c1531efc9147d321ce20 /public | |
parent | 39d2fccf893786ea7d6c6971b926ac3a770a03c8 (diff) | |
download | server-65a821b404a610251e6118cf046aabf02f828718.tar.gz |
fix typo
Diffstat (limited to 'public')
-rw-r--r-- | public/common/client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/common/client.js b/public/common/client.js index c817016..2ce568f 100644 --- a/public/common/client.js +++ b/public/common/client.js @@ -704,7 +704,7 @@ function action_button(action, label) { } function confirm_action_button(action, label, message) { - action_button_imp(action, label, evt => confirm_send_action(message, action)) + action_button_imp(action, label, evt => confirm_send_action(action, undefined, message)) } function send_action(verb, noun) { |