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 de1c534 commit be15257Copy full SHA for be15257
src/packages/frontend/custom-software/selector.tsx
@@ -81,7 +81,9 @@ export function SoftwareEnvironment(props: Props) {
81
const software_images = customize_software.get("environments");
82
83
const haveSoftwareImages: boolean = useMemo(
84
- () => (customize_software.get("environments")?.size ?? 0) > 0,
+ // num images > 1 to not show the standard default
85
+ // https://github.com/sagemathinc/cocalc/issues/8510
86
+ () => (customize_software.get("environments")?.size ?? 0) > 1,
87
[customize_software],
88
);
89
0 commit comments