Skip to content

Commit 5692819

Browse files
Merge branch 'main' into update-digests
2 parents 3cb5807 + 0cba458 commit 5692819

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

WORKSPACE.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ defaultArgs:
77
publishToNPM: true
88
publishToJBMarketplace: true
99
localAppVersion: unknown
10-
codeCommit: b889dadbf401a55d02e2fb98981d9c7832f07ea2
11-
codeVersion: 1.96.3
10+
codeCommit: e81ab749002377cf40b1551661a6b80725141ff0
11+
codeVersion: 1.97.2
1212
codeQuality: stable
1313
codeWebExtensionCommit: 3953e8160fffa97dd4a4509542b4bf7ff9b704cd
1414
xtermCommit: d547d4ff4590b66c3ea24342fc62e3afcf6b77bc

components/dashboard/src/insights/download/DownloadInsights.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const DownloadInsightsToast = ({ organizationId, from, to, organizationNa
8282
<div className="flex flex-row items-start justify-between space-x-2">
8383
<div>
8484
<span>Insights export complete.</span>
85-
<p className="dark:text-gray-500">
85+
<p className="text-pk-content-invert-primary/90">
8686
{readableSize} &middot; {formattedCount} {data.count !== 1 ? "entries" : "entry"} exported
8787
</p>
8888
</div>

components/dashboard/src/usage/download/DownloadUsage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const DownloadUsageToast: FC<DownloadUsageToastProps> = ({ attributionId, endDat
124124
<div className="flex flex-row items-start justify-between space-x-2">
125125
<div>
126126
<span>Usage export complete.</span>
127-
<p className="dark:text-gray-500">
127+
<p className="text-pk-content-invert-primary/90">
128128
{readableSize} &middot; {formattedCount} {data.count !== 1 ? "entries" : "entry"} exported
129129
</p>
130130
</div>

components/ide-proxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN for FILE in `ls /bin/gitpod-local-companion*`;do \
1414
done
1515

1616
RUN mkdir -p static/code
17-
RUN curl -o static/code/marketplace.json "https://raw.githubusercontent.com/open-vsx/publish-extensions/e5c7f0ac781b430049c9f07fed10ee5c388b0097/extension-control/extensions.json"
17+
RUN curl -o static/code/marketplace.json "https://raw.githubusercontent.com/EclipseFdn/publish-extensions/d9a7cc2d486ca881e9df310324f9752f48156283/extension-control/extensions.json"
1818

1919
FROM caddy/caddy:2.7.6-alpine
2020

components/ws-daemon/pkg/controller/workspace_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ func (wsc *WorkspaceController) handleWorkspaceInit(ctx context.Context, ws *wor
226226
}
227227

228228
func initializerMetricsFromInitializerStats(stats *csapi.InitializerMetrics) *workspacev1.InitializerMetrics {
229-
if stats == nil {
229+
if stats == nil || len(*stats) == 0 {
230230
return nil
231231
}
232232

0 commit comments

Comments
 (0)