You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The close icon do not appear when adding a new closable tab in the main area (TabPanel).
To Reproduce
Create an extension which add a new widget in the main area, something like :
widget = new MainAreaWidget({content});
widget.id = 'new_widget';
widget.title.label = 'Courses';
widget.title.closable = true;
let w = app.shell.widgets('main').next() as TabPanel;
w.addWidget(widget);
Expected behavior
Have a close symbol on the tab, like :
Screenshots
Currently the result is :
The text was updated successfully, but these errors were encountered:
Describe the bug
The close icon do not appear when adding a new closable tab in the main area (
TabPanel
).To Reproduce
Create an extension which add a new widget in the main area, something like :
Expected behavior

Have a close symbol on the tab, like :
Screenshots

Currently the result is :
The text was updated successfully, but these errors were encountered: