DEV: Remove unused searchTags param (#24590)

This commit is contained in:
Jarek Radosz 2023-11-28 10:56:36 +01:00 committed by GitHub
parent 4c7793940a
commit 4953bced64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,11 +9,7 @@ import I18n from "discourse-i18n";
export default Mixin.create({
searchTags(url, data, callback) {
return ajax(getURL(url), {
quietMillis: 200,
dataType: "json",
data,
})
return ajax(getURL(url), { data })
.then((json) => callback(this, json))
.catch(popupAjaxError);
},