Skip to content

Commit

Permalink
Remove ellipsis (…) char at the end of notebookbar button labels
Browse files Browse the repository at this point in the history
Signed-off-by: Andras Timar <[email protected]>
Change-Id: Ie110bc895d7a639266affb9ba3129a5a831d6e2c
  • Loading branch information
timar authored and eszkadev committed Oct 15, 2023
1 parent b35c4f5 commit db553e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions browser/src/control/Control.JSDialogBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,8 @@ L.Control.JSDialogBuilder = L.Control.extend({
return '';
if (text.endsWith('...'))
text = text.slice(0, -3);
if (text.endsWith('…'))
text = text.slice(0, -1);
return text.replace('~', '');
},

Expand Down

0 comments on commit db553e3

Please sign in to comment.