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";
22import { useIsSupported } from "@/composables/serviceSemVer" ;
33import { environment } from "@/composables/serviceServiceControl" ;
44
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 ) ) ;
77
88export default isAllMessagesSupported ;
Original file line number Diff line number Diff line change 22import { licenseStatus } from " ../composables/serviceLicense" ;
33import LicenseExpired from " ../components/LicenseExpired.vue" ;
44import AuditList from " @/components/audit/AuditList.vue" ;
5- import isAllMessagesSupported , { minimumSCVersionForThroughput } from " @/components/audit/isAllMessagesSupported.ts" ;
5+ import isAllMessagesSupported , { minimumSCVersionForAllMessages } from " @/components/audit/isAllMessagesSupported.ts" ;
66import ConditionalRender from " @/components/ConditionalRender.vue" ;
77 </script >
88
@@ -12,7 +12,7 @@ import ConditionalRender from "@/components/ConditionalRender.vue";
1212 <div class =" not-supported" >
1313 <p >
1414 The minimum version of ServiceControl required to enable this feature is
15- <span > {{ minimumSCVersionForThroughput }} </span >.
15+ <span > {{ minimumSCVersionForAllMessages }} </span >.
1616 </p >
1717 <div >
1818 <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