Skip to content

Instantly share code, notes, and snippets.

View dannon's full-sized avatar

Dannon dannon

View GitHub Profile
diff --git a/client/src/api/index.ts b/client/src/api/index.ts
index 6f9ce9d021..361c02a8e0 100644
--- a/client/src/api/index.ts
+++ b/client/src/api/index.ts
@@ -266,6 +266,7 @@ export function isRegisteredUser(user: AnyUser | UserModel): user is RegisteredU
}
export function isAnonymousUser(user: AnyUser | UserModel): user is AnonymousUser {
+ console.debug("CHECKING IS ANONYMOUS USER ", user);
return user !== null && !isRegisteredUser(user);
diff --git a/client/src/api/index.ts b/client/src/api/index.ts
index 6f9ce9d021..fdd0c736c6 100644
--- a/client/src/api/index.ts
+++ b/client/src/api/index.ts
@@ -266,6 +266,7 @@ export function isRegisteredUser(user: AnyUser | UserModel): user is RegisteredU
}
export function isAnonymousUser(user: AnyUser | UserModel): user is AnonymousUser {
+ console.debug("CHECKING IS ANONYMOUS USER", user);
return user !== null && !isRegisteredUser(user);
commit fcea1f489cced844d37c0de66d492a83c19025c3
Author: Dannon Baker <[email protected]>
Date: Thu Feb 6 11:46:09 2025 -0500
Add activity panel closure on route navigation to workflow landing
diff --git a/client/src/entry/analysis/router.js b/client/src/entry/analysis/router.js
index 033b70136c..edca96224a 100644
--- a/client/src/entry/analysis/router.js
+++ b/client/src/entry/analysis/router.js
diff --git a/client/src/components/History/Content/ContentItem.test.js b/client/src/components/History/Content/ContentItem.test.js
index 8526789a84..01d4dffbae 100644
--- a/client/src/components/History/Content/ContentItem.test.js
+++ b/client/src/components/History/Content/ContentItem.test.js
@@ -46,12 +46,12 @@ describe("ContentItem", () => {
DatasetDetails: true,
vueTagsInput: false,
},
- provide: {
- store: {
diff --git a/lib/galaxy/files/sources/galaxy.py b/lib/galaxy/files/sources/galaxy.py
index ebbf9d303e..e1a02a30ab 100644
--- a/lib/galaxy/files/sources/galaxy.py
+++ b/lib/galaxy/files/sources/galaxy.py
@@ -12,6 +12,26 @@ from .posix import (
PosixFilesSourceProperties,
)
+class UserHomeFilesSource(PosixFilesSource):
+ plugin_type = "gxuserhome"
diff --git a/lib/galaxy/files/sources/galaxy.py b/lib/galaxy/files/sources/galaxy.py
index ebbf9d303e..62efed21f0 100644
--- a/lib/galaxy/files/sources/galaxy.py
+++ b/lib/galaxy/files/sources/galaxy.py
@@ -12,6 +12,26 @@ from .posix import (
PosixFilesSourceProperties,
)
+class UserHomeFilesSource(PosixFilesSource):
+ plugin_type = "gxuserhome"
diff --git a/client/src/components/Libraries/LibraryFolder/TopToolbar/FolderTopBar.vue b/client/src/components/Libraries/LibraryFolder/TopToolbar/FolderTopBar.vue
index e38445528e..45427cee35 100644
--- a/client/src/components/Libraries/LibraryFolder/TopToolbar/FolderTopBar.vue
+++ b/client/src/components/Libraries/LibraryFolder/TopToolbar/FolderTopBar.vue
@@ -237,12 +237,15 @@ export default {
async getSelected() {
if (this.isAllSelectedMode) {
this.$emit("setBusy", true);
+ console.debug("Get selected!")
+ console.debug('first', this.selected);
diff --git a/client/src/components/Workflow/Editor/WorkflowGraph.vue b/client/src/components/Workflow/Editor/WorkflowGraph.vue
index 3dc2aa26b1..d3c0dfab5f 100644
--- a/client/src/components/Workflow/Editor/WorkflowGraph.vue
+++ b/client/src/components/Workflow/Editor/WorkflowGraph.vue
@@ -68,7 +68,7 @@ const canvas: Ref<HTMLElement | null> = ref(null);
const elementBounding = useElementBounding(canvas, { windowResize: false, windowScroll: false });
const scroll = useScroll(canvas);
-const { transform, panBy, setZoom, moveTo } = useD3Zoom(1, minZoom, maxZoom, canvas, scroll);
+const { transform, panBy, setZoom, moveTo } = useD3Zoom(1, minZoom, maxZoom, canvas, scroll, { x: 10, y: 10 });
diff --git a/client/src/mvc/visualization/chart/chart-client.js b/client/src/mvc/visualization/chart/chart-client.js
index 4a030f5c10..4891596ef2 100644
--- a/client/src/mvc/visualization/chart/chart-client.js
+++ b/client/src/mvc/visualization/chart/chart-client.js
@@ -46,6 +46,7 @@ export default Backbone.View.extend({
})
.done((dataset) => {
this.dataset = dataset;
+ console.debug("LOADING CHART WITH THIS", this);
this.chart.load();
diff --git a/lib/galaxy/webapps/galaxy/controllers/workflow.py b/lib/galaxy/webapps/galaxy/controllers/workflow.py
index 63a8d66698..3e51a7d830 100644
--- a/lib/galaxy/webapps/galaxy/controllers/workflow.py
+++ b/lib/galaxy/webapps/galaxy/controllers/workflow.py
@@ -538,16 +538,13 @@ class WorkflowController(BaseUIController, SharableMixin, UsesStoredWorkflowMixi
]

# identify item tags
- item_tags = [tag for tag in stored.tags if tag.user == trans.user]
- item_tag_names = []