dask / dask-labextension

JupyterLab extension for Dask

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remove "Dask " from the titles of tabs

mrocklin opened this issue · comments

My JLab panes look like this:

Screen Shot 2021-07-20 at 6 29 31 AM

If we removed the word Dask from all of the titles then it would be easier to see what was what. We already have the icon to distinguish these from other kinds of tabs.

Agreed, the icon should suffice.

A fairly simple fix, requires updating the labels here:

if (`Dask ${dashboard.label}` !== widget.title.label) {
widget.title.label = `Dask ${dashboard.label}`;
}

and here:

dashboard.title.label = `Dask ${dashboardItem.label}`;

Should I interpret this last comment as "this is easy so I'll do it soon" or "this is easy so it might be a good opportunity to bring in some new". If the latter, Alex?

I'm happy to do it soon (it is indeed very easy), but I'm also happy to bring on any extra hands. I suppose I intended it as a flare to see if any interested contributors popped up.

silent masses, lol

Well, I came over here to complain about something (and find out that Ian has already fixed it, fantastic), so I may as well fix someone else's frustration while I'm here instead.