diff options
author | CommanderRoot <CommanderRoot@users.noreply.github.com> | 2022-02-18 07:50:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 14:50:36 +0800 |
commit | 1ab88da0e460a076a95dcd2cad812e707da3acc9 (patch) | |
tree | eb685355022b805a9198fe2d9905416f1b1dc8e2 /web_src/js/features/common-global.js | |
parent | a7b9d44d8842a5a1c82a180215536da647077f68 (diff) | |
download | gitea-1ab88da0e460a076a95dcd2cad812e707da3acc9.tar.gz gitea-1ab88da0e460a076a95dcd2cad812e707da3acc9.zip |
Replace deprecated String.prototype.substr() with String.prototype.slice() (#18796)
String.prototype.substr() is deprecated (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr) so we replace it with the slice() method which works similarily but isn't deprecated.
Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'web_src/js/features/common-global.js')
-rw-r--r-- | web_src/js/features/common-global.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/features/common-global.js b/web_src/js/features/common-global.js index 45bb96c26e..a9baf9be0c 100644 --- a/web_src/js/features/common-global.js +++ b/web_src/js/features/common-global.js @@ -211,7 +211,7 @@ export function initGlobalLinkActions() { }; for (const [key, value] of Object.entries(dataArray)) { if (key && key.startsWith('data')) { - postData[key.substr(4)] = value; + postData[key.slice(4)] = value; } if (key === 'id') { postData['id'] = value; |