File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ LABEL org.opencontainers.image.title="Labspaces" \
2323 com.docker.extension.publisher-url="https://github.com/dockersamples/labspace-extension" \
2424 com.docker.extension.additional-urls="[{\" title\" :\" Create your own Labspace\" ,\" url\" :\" https://github.com/dockersamples/labspace-starter\" }]" \
2525 com.docker.extension.categories="cloud-development" \
26- com.docker.extension.changelog="Initial release "
26+ com.docker.extension.changelog="Fix bug that was showing \" Starting... \" label for all Labspaces instead of only the one being started "
2727COPY beaker.svg /
2828COPY metadata.json /
2929COPY --from=build /usr/local/app/dist /ui
Original file line number Diff line number Diff line change @@ -34,7 +34,9 @@ export function LabspaceCard({ labspace }) {
3434 onClick = { ( ) => startLabspace ( labspace . publishedRepo ) }
3535 disabled = { startingLabspace || runningLabspace }
3636 >
37- { startingLabspace ? "Starting..." : "Launch" }
37+ { startingLabspace === labspace . publishedRepo
38+ ? "Starting..."
39+ : "Launch" }
3840 </ Button >
3941 </ div >
4042 </ Card . Footer >
You can’t perform that action at this time.
0 commit comments