Help-> About page

I want to edit content of theia-dialog-shell which i got by inspecting in chrome.

Actually, I need to edit page which is appearing on Help-> About page. which is nothing but popup and its id is theia-dialog-shell.

Its at the moment shows the list of theia extension I am using in project.

Hey @gauravthorath,

the about dialog is designed to be overriden by Theia adopters, see the AboutDialog class.

Any example, how to do it ?

It should be as straightforward as:

export class CustomAboutDialog extends AboutDialog {
    // override whatever you want in here (probably the `render` function)
}

And bind it in your frontend module:

rebind(AboutDialog).to(CustomAboutDialog).inSingletonScope();

Thank you @msujew, It worked !!