GreasyPenguin14 That's an annoying bug indeed - Thanks for spotting it. If you need to circumvent it before a fix comes out in one of the near releases, you can programatically use the https://clear.ml/docs/latest/docs/references/api/endpoints#post-projectsupdate e.g.from clearml.backend_api.session.client import APIClient client = APIClient() client.projects.update(project='<project ID>', description='My new description')
Note you can get your project's ID either from the webapp URL, or using the projects.get_all
API.
GreasyPenguin14 When the project description is empty you get a "Add project overview" instead if the "Edit" button:
I see this indeed when I create a new project with an empty description. Is this also possible for older project created before clearml 1.0? For these projects this button is not there