summaryrefslogtreecommitdiff
path: root/web-ui/app/js/tags/data/tags.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/tags/data/tags.js')
-rw-r--r--web-ui/app/js/tags/data/tags.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/app/js/tags/data/tags.js b/web-ui/app/js/tags/data/tags.js
index 4a1e6af0..40614fea 100644
--- a/web-ui/app/js/tags/data/tags.js
+++ b/web-ui/app/js/tags/data/tags.js
@@ -14,7 +14,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
*/
-define(['flight/lib/component', 'page/events', 'mixins/with_feature_toggle'], function (defineComponent, events, withFeatureToggle) {
+define(['flight/lib/component', 'page/events', 'helpers/monitored_ajax', 'mixins/with_feature_toggle'], function (defineComponent, events, monitoredAjax, withFeatureToggle) {
'use strict';
var DataTags = defineComponent(dataTags, withFeatureToggle('tags', function() {
@@ -49,7 +49,7 @@ define(['flight/lib/component', 'page/events', 'mixins/with_feature_toggle'], fu
});
this.fetchTags = function(event, params) {
- $.ajax(this.attr.tagsResource)
+ monitoredAjax(this, this.attr.tagsResource)
.done(sendTagsBackTo(this, params));
};