Skip to content

Commit bd69a05

Browse files
committed
fix rebase
1 parent 014b39b commit bd69a05

File tree

4 files changed

+85
-85
lines changed

4 files changed

+85
-85
lines changed

components/dashboard/src/data/setup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import * as SSHClasses from "@gitpod/public-api/lib/gitpod/v1/ssh_pb";
3131
// This is used to version the cache
3232
// If data we cache changes in a non-backwards compatible way, increment this version
3333
// That will bust any previous cache versions a client may have stored
34-
const CACHE_VERSION = "10";
34+
const CACHE_VERSION = "11";
3535

3636
export function noPersistence(queryKey: QueryKey): QueryKey {
3737
return [...queryKey, "no-persistence"];

components/dashboard/src/workspaces/CreateWorkspacePage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ export function CreateWorkspacePage() {
199199
opts.forceDefaultConfig = true;
200200
}
201201

202-
if (!opts.editor) {
203-
opts.editor = {
202+
if (opts.source?.case === "contextUrl") {
203+
opts.source.value.editor = {
204204
name: selectedIde,
205205
version: useLatestIde ? "latest" : undefined,
206206
};

components/public-api/go/v1/workspace.pb.go

Lines changed: 66 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)