Dagit’s left nav now groups jobs by repository in ...
# dagster-feedback
s
Dagit’s left nav now groups jobs by repository in 0.14.17. will be great if we can give some custom names to the repo tabs from
workspace.yaml
🤖 1
r
You can give a custom name to the repository tab by giving a custom name to your repository: https://docs.dagster.io/_apidocs/repositories#dagster.repository
s
@rex I’m looking to have a nice display name on the Dagit UI for the repo
r
right, i believe if you update the name of the repository in code, it should be reflected in the Dagit UI
s
yes, I was looking for a way to be able to add a display name (or something similar) in
workspace.yaml
instead of renamed the repository
r
so something like
Copy code
@repository(name="my-name")
def redpill_repository():
    ...
Would result a name
my-name
instead of
redpill_repository
s
that’s what I tried but no luck. I suspect it could be using
attribute
from
workspace.yaml
instead
r
the name should be on the decorator, not on the function
s
whoops, it’s working now! need to get some in me!
😂 1
r
sweet, glad its working for you