Explorar el Código

Merge pull request #3613 from jupyterlab/remove-ellipsis

Remove ellipsis
Jason Grout hace 7 años
padre
commit
3a6c62d0d3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/filebrowser-extension/src/index.ts

+ 1 - 1
packages/filebrowser-extension/src/index.ts

@@ -441,7 +441,7 @@ function createContextMenu(model: Contents.IModel, commands: CommandRegistry, re
     if (path && factories.length > 1) {
       const command =  'docmanager:open';
       const openWith = new Menu({ commands });
-      openWith.title.label = 'Open With...';
+      openWith.title.label = 'Open With';
       factories.forEach(factory => {
         openWith.addItem({ args: { factory, path }, command });
       });