Skip to content

Commit

Permalink
Merge pull request #7367 from dkapila/feature-csv-hash
Browse files Browse the repository at this point in the history
Added hash to the csv delimiter types
  • Loading branch information
jasongrout committed Oct 15, 2019
2 parents 4fab41a + b7c5d71 commit b5f6178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/csvviewer/src/toolbar.ts
Expand Up @@ -14,12 +14,12 @@ import { Styling } from '@jupyterlab/apputils';
/**
* The supported parsing delimiters.
*/
const DELIMITERS = [',', ';', '\t', '|'];
const DELIMITERS = [',', ';', '\t', '|', '#'];

/**
* The labels for each delimiter as they appear in the dropdown menu.
*/
const LABELS = [',', ';', 'tab', 'pipe'];
const LABELS = [',', ';', 'tab', 'pipe', 'hash'];

/**
* The class name added to a csv toolbar widget.
Expand Down

0 comments on commit b5f6178

Please sign in to comment.