We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 605c42a commit 58583abCopy full SHA for 58583ab
2 files changed
src/lib/services/agent-service.js
@@ -116,8 +116,8 @@ export async function getAgentRuleOptions() {
116
}
117
118
/**
119
- * Get agent rule criteria providers
120
- * @returns {Promise<any[]>}
+ * Get agent rule config options
+ * @returns {Promise<any>}
121
*/
122
export async function getAgentRuleConfigOptions() {
123
const url = endpoints.agentRuleConfigOptionsUrl;
src/routes/page/agent/[agentId]/agent-components/rules/agent-rule.svelte
@@ -248,7 +248,7 @@
248
249
250
const config = ruleConfigs[found.config.topology_name];
251
- const customParam = config.customParameters || {};
+ const customParam = config?.customParameters || {};
252
253
if (customParam.htmlTag === 'iframe') {
254
const params = JSON.stringify({
0 commit comments