Skip to content

Commit

Permalink
Merge pull request #5406 from plotly/devtools-strict-d3-require
Browse files Browse the repository at this point in the history
Fixup strict d3 require in devtools
  • Loading branch information
archmoj authored Jan 14, 2021
2 parents af9d440 + d321529 commit ecfa01e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion devtools/image_viewer/viewer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var fs = require('fs');
var path = require('path');

var d3Json = require('../../test/strict_d3').json;
var d3Json = require('../../test/strict-d3').json;

var $plotlist = document.getElementById('plot-list');
var $toggles = document.getElementById('plot-toggles');
Expand Down
2 changes: 1 addition & 1 deletion devtools/test_dashboard/devtools.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var Fuse = require('fuse.js/dist/fuse.common.js');
var mocks = require('../../build/test_dashboard_mocks.json');
var credentials = require('../../build/credentials.json');
var Lib = require('@src/lib');
var d3 = require('../../test/strict_d3');
var d3 = require('../../test/strict-d3');
var d3Json = d3.json;

require('./perf');
Expand Down

0 comments on commit ecfa01e

Please sign in to comment.