Skip to content

Commit

Permalink
add missing js extension (olifolkerd#3751)
Browse files Browse the repository at this point in the history
otherwise the esm build won't work if used directly in the browser
  • Loading branch information
lekoala authored May 26, 2022
1 parent 7095b2f commit 73f5344
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/js/modules/Interaction/Interaction.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Module from '../../core/Module.js';
import Helpers from '../../core/tools/Helpers.js';

import Cell from '../../core/cell/Cell';
import Column from '../../core/column/Column';
import Cell from '../../core/cell/Cell.js';
import Column from '../../core/column/Column.js';

class Interaction extends Module{

Expand Down Expand Up @@ -311,4 +311,4 @@ class Interaction extends Module{

Interaction.moduleName = "interaction";

export default Interaction;
export default Interaction;

0 comments on commit 73f5344

Please sign in to comment.