diff options
author | Louis Chemineau <louis@chmn.me> | 2022-01-10 14:16:47 +0100 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2022-01-11 17:13:04 +0100 |
commit | 9fc6cc96346a0a5ef4a997741d9b3b0f9a9aabbe (patch) | |
tree | 849ea6916ae25665bd1436a2d87db961ca67344d /apps/files | |
parent | d92cbf51493f0aa15745d2f9545cba2372eecec3 (diff) | |
download | nextcloud-server-9fc6cc96346a0a5ef4a997741d9b3b0f9a9aabbe.tar.gz nextcloud-server-9fc6cc96346a0a5ef4a997741d9b3b0f9a9aabbe.zip |
Add generic type and description when its missing
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 8 | ||||
-rw-r--r-- | apps/files/src/services/FileInfo.js | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index fec058effd3..2a3bea1ca16 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1203,7 +1203,7 @@ /** * Custom code * Set tag for all selected files - * @param tagModel + * @param {any} tagModel - * @private */ _onSelectTag: function(tagModel) { @@ -1221,7 +1221,7 @@ }, /** * remove tag from all selected files - * @param tagId + * @param {any} tagId - * @private */ _onDeselectTag: function(tagId) { @@ -3348,7 +3348,7 @@ }, /** * hide files matching the given filter - * @param filter + * @param {any} filter - */ setFilter:function(filter) { var total = 0; @@ -3413,7 +3413,7 @@ }, /** * get the current filter - * @param filter + * @param {any} filter - */ getFilter:function(filter) { return this._filter; diff --git a/apps/files/src/services/FileInfo.js b/apps/files/src/services/FileInfo.js index a94436e16a5..0a83bd90a95 100644 --- a/apps/files/src/services/FileInfo.js +++ b/apps/files/src/services/FileInfo.js @@ -23,7 +23,7 @@ import axios from '@nextcloud/axios' /** - * @param url + * @param {any} url - */ export default async function(url) { const response = await axios({ |