Skip to content

Commit

Permalink
Fix missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski authored Aug 17, 2021
1 parent 9bdfb1b commit 1278ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/statusbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class SelectionStatus extends VDomRenderer<SelectionStatus.Model> {
}
this.node.title =
this._trans._n('Selected %1 row', 'Selected %1 rows', selection.rows) +
this._trans._n(' and %1 column', 'and %1 columns', selection.columns);
this._trans._n(' and %1 column', ' and %1 columns', selection.columns);

const text =
this._trans._n('%1 row', '%1 rows', selection.rows) +
Expand Down

0 comments on commit 1278ac9

Please sign in to comment.