Переглянути джерело

Merge pull request #3613 from jupyterlab/remove-ellipsis

Remove ellipsis
Jason Grout 7 роки тому
батько
коміт
3a6c62d0d3
1 змінених файлів з 1 додано та 1 видалено
  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 });
       });