@appscode/design-system 2.17.84 → 2.17.85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "2.17.84",
3
+ "version": "2.17.85",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -121,7 +121,7 @@ const filteredAppList = appListWithUrl.filter((element) => {
121
121
  // but always keep billing when this is an offline installer
122
122
  const selfHostList = ["billing", "selfhost", "learn"];
123
123
  if (isSelfHosted.value && selfHostList.includes(element.name)) {
124
- if (element.name === "billing" && props.isOfflineInstaller) return true;
124
+ if (element.name === "billing" && props.isOfflineInstaller && props.activeOrgType === 6) return true;
125
125
  return false;
126
126
  }
127
127