Skip to content

Commit 3f51f17

Browse files
Merge pull request #1712 from Particular/john/smoke
Fixed issues found in 1.38.0 smoke test
2 parents 588673a + 66c8114 commit 3f51f17

File tree

5 files changed

+26
-13
lines changed

5 files changed

+26
-13
lines changed

src/ServicePulse.Host/vue/src/components/PageHeader.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { useIsMonitoringEnabled } from "../composables/serviceServiceControlUrls
66
import { licenseStatus } from "../composables/serviceLicense";
77
import ExclamationMark from "./ExclamationMark.vue";
88
import { LicenseWarningLevel } from "@/composables/LicenseStatus";
9+
import { WarningLevel } from "@/components/WarningLevel";
910
1011
const baseUrl = window.defaultConfig.base_url;
1112

src/ServicePulse.Host/vue/src/components/failedmessages/FailedMessageGroups.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,16 @@ onMounted(async () => {
144144
</template>
145145
</template>
146146
</template>
147+
148+
<style>
149+
.lead {
150+
word-wrap: break-word;
151+
color: #181919 !important;
152+
font-size: 1em !important;
153+
font-weight: bold !important;
154+
margin-bottom: 0.2em;
155+
white-space: nowrap;
156+
overflow: hidden;
157+
text-overflow: ellipsis;
158+
}
159+
</style>

src/ServicePulse.Host/vue/src/components/failedmessages/FlowDiagram.vue

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -227,17 +227,6 @@ function typeIcon(type) {
227227
text-align: left;
228228
}
229229
230-
.lead {
231-
word-wrap: break-word;
232-
color: #181919 !important;
233-
font-size: 1em !important;
234-
font-weight: bold !important;
235-
margin-bottom: 0.2em;
236-
white-space: nowrap;
237-
overflow: hidden;
238-
text-overflow: ellipsis;
239-
}
240-
241230
.node {
242231
background-color: #fff;
243232
border-color: #cccbcc;

src/ServicePulse.Host/vue/src/components/failedmessages/MessageView.vue

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -504,4 +504,15 @@ button img {
504504
.msg-tabs {
505505
margin-bottom: 20px;
506506
}
507+
508+
.lead {
509+
word-wrap: break-word;
510+
color: #181919 !important;
511+
font-size: 1em !important;
512+
font-weight: bold !important;
513+
margin-bottom: 0.2em;
514+
white-space: nowrap;
515+
overflow: hidden;
516+
text-overflow: ellipsis;
517+
}
507518
</style>

src/ServicePulse.Host/vue/vite.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ function createCSPOverrides(hostPort: number, configuredDestinations: string[])
2323
const port = 5173;
2424
const defaultUrls = [
2525
"http://10.211.55.3:*", // The default Parallels url to access Windows VM
26-
"http://localhost:33333", // Default SC Error instance
27-
"http://localhost:33633" // Default SC Monitoring instance
26+
"http://localhost:*",
2827
];
2928

3029
// https://vitejs.dev/config/

0 commit comments

Comments
 (0)