We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 062298d commit d8fafadCopy full SHA for d8fafad
src/components/RabbitMQServerReleaseInfo/index.js
@@ -155,7 +155,9 @@ export function RabbitMQServerReleaseInfoTable() {
155
var hasOSSSupport = false;
156
if (releaseBranch.end_of_support) {
157
/* Release branch is supported. */
158
- if (previousReleaseBranch) {
+ if (releaseBranch.end_of_community_support) {
159
+ endOfCommunitySupportDate = new Date(releaseBranch.end_of_community_support);
160
+ } else if (previousReleaseBranch) {
161
const prevReleases = previousReleaseBranch.releases;
162
const initialPrevRelease = prevReleases[prevReleases.length - 1];
163
endOfCommunitySupportDate = new Date(initialPrevRelease.release_date);
0 commit comments