From d31f7e798a5cd8b32405418eba050d9e9cf4c8f1 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Fri, 30 Dec 2022 04:10:43 +0000 Subject: [PATCH] fix typo in editable/bootstrap-editable.js. occured -> occurred Signed-off-by: Ikko Ashimine --- .../bootstrap-table/extensions/editable/bootstrap-editable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/static/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.js b/src/main/resources/static/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.js index 29ed2c7..adae67b 100644 --- a/src/main/resources/static/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.js +++ b/src/main/resources/static/ajax/libs/bootstrap-table/extensions/editable/bootstrap-editable.js @@ -531,7 +531,7 @@ Editableform is linked with one of input types, e.g. 'text', 'select' etc. Success callback. Called when value successfully sent on server and **response status = 200**. Usefull to work with json response. For example, if your backend response can be {success: true} or `{success: false, msg: "server error"}` you can check it inside this callback. - If it returns **string** - means error occured and string is shown as error message. + If it returns **string** - means error occurred and string is shown as error message. If it returns **object like** `{newValue: <something>}` - it overwrites value, submitted by user (useful when server changes value). Otherwise newValue simply rendered into element. -- Gitee