Skip to content

Commit e706f85

Browse files
authored
Update condition for when broker transport has no settings (#2265)
1 parent 0c22ded commit e706f85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Frontend/src/views/throughputreport/setup/ConnectionSetupView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ onMounted(async () => {
1818

1919
<template>
2020
<div class="row">
21-
<p v-if="isBrokerTransport || useIsMonitoringEnabled()">
21+
<p v-if="(settingsInfo?.broker_settings.length ?? 0 > 0) || (!isBrokerTransport && useIsMonitoringEnabled())">
2222
In order for ServicePulse to collect usage data from {{ store.transportNameForInstructions() }} you need to configure the below settings.<br />
2323
There are two configuration options, as environment variables or directly in the
2424
<a href="https://docs.particular.net/servicecontrol/creating-config-file"><code>ServiceControl.exe.config</code></a> file.

0 commit comments

Comments
 (0)