File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { computed } from "vue";
2
2
import { useIsSupported } from "@/composables/serviceSemVer" ;
3
3
import { environment } from "@/composables/serviceServiceControl" ;
4
4
5
- export const minimumSCVersionForThroughput = "6.6.0" ;
6
- const isAllMessagesSupported = computed ( ( ) => useIsSupported ( environment . sc_version , minimumSCVersionForThroughput ) ) ;
5
+ export const minimumSCVersionForAllMessages = "6.6.0" ;
6
+ const isAllMessagesSupported = computed ( ( ) => useIsSupported ( environment . sc_version , minimumSCVersionForAllMessages ) ) ;
7
7
8
8
export default isAllMessagesSupported ;
Original file line number Diff line number Diff line change 2
2
import { licenseStatus } from " ../composables/serviceLicense" ;
3
3
import LicenseExpired from " ../components/LicenseExpired.vue" ;
4
4
import AuditList from " @/components/audit/AuditList.vue" ;
5
- import isAllMessagesSupported , { minimumSCVersionForThroughput } from " @/components/audit/isAllMessagesSupported.ts" ;
5
+ import isAllMessagesSupported , { minimumSCVersionForAllMessages } from " @/components/audit/isAllMessagesSupported.ts" ;
6
6
import ConditionalRender from " @/components/ConditionalRender.vue" ;
7
7
</script >
8
8
@@ -12,7 +12,7 @@ import ConditionalRender from "@/components/ConditionalRender.vue";
12
12
<div class =" not-supported" >
13
13
<p >
14
14
The minimum version of ServiceControl required to enable this feature is
15
- <span > {{ minimumSCVersionForThroughput }} </span >.
15
+ <span > {{ minimumSCVersionForAllMessages }} </span >.
16
16
</p >
17
17
<div >
18
18
<a class =" btn btn-default btn-primary" href =" https://particular.net/downloads" target =" _blank" >Update ServiceControl to latest version</a >
You can’t perform that action at this time.
0 commit comments