We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b88530 commit c32097cCopy full SHA for c32097c
client/src/utils/webhooks.js
@@ -1,7 +1,7 @@
1
import axios from "axios";
2
import Backbone from "backbone";
3
import { getAppRoot } from "onload/loadConfig";
4
-import Utils from "utils/utils";
+import { appendScriptStyle } from "utils/utils";
5
6
import { rethrowSimple } from "@/utils/simple-error";
7
@@ -39,7 +39,7 @@ const WebhookView = Backbone.View.extend({
39
40
render: function (model) {
41
this.$el.html(`<div id="${model.id}"></div>`);
42
- Utils.appendScriptStyle(model);
+ appendScriptStyle(model);
43
return this;
44
},
45
});
0 commit comments