-
Notifications
You must be signed in to change notification settings - Fork 32
ghost tasks: switch from flow=None to graphDepth=0 #2585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,7 +59,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |
| :task="node" | ||
| :jobs="node.children" | ||
| :jobTheme="jobTheme" | ||
| :class="{ 'flow-none': isFlowNone(node.node.flowNums) }" | ||
| :class="{ 'dimmed': node.node.graphDepth }" | ||
| /> | ||
| </g> | ||
| <!-- the edges | ||
|
|
@@ -129,7 +129,6 @@ import { | |
| mdiFileRotateRight, | ||
| mdiVectorSelection | ||
| } from '@mdi/js' | ||
| import { isFlowNone } from '@/utils/tasks' | ||
|
|
||
| // NOTE: Use TaskProxies not nodesEdges{nodes} to list nodes as this is what | ||
| // the tree view uses which allows the requests to overlap with this and other | ||
|
|
@@ -175,6 +174,7 @@ fragment TaskProxyData on TaskProxy { | |
| meanElapsedTime | ||
| } | ||
| flowNums | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is Run through the modified queries and check usage. Note the field might be used by a component used by the view rather than in the view code itself. If happy the field is not being used, remove it from the query.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Look up at the co pilot suggestion |
||
| graphDepth | ||
| runtime { | ||
| runMode | ||
| } | ||
|
|
@@ -275,7 +275,6 @@ export default { | |
| autoRefresh, | ||
| spacing, | ||
| groupCycle, | ||
| isFlowNone, | ||
| } | ||
| }, | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -121,6 +121,7 @@ fragment TaskProxyData on TaskProxy { | |
| runMode | ||
| } | ||
| flowNums | ||
| graphDepth | ||
| } | ||
|
|
||
| fragment JobData on Job { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dimming didn't seem to be that visible on my display. So I've cranked it up a notch