Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
evanplaice committed Dec 15, 2019
1 parent 602757a commit 9d9205f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/wc-sortable-table.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint no-undef: 0 */
import Interpolate from './util/interpolate.js';

export class WCSortableTable extends HTMLElement {
Expand Down Expand Up @@ -57,7 +58,7 @@ export class WCSortableTable extends HTMLElement {
async getTheme () {
const path = this.getAttribute('theme');
const contents = await this.fetchTheme(path);
return Interpolate(contents);
return Interpolate(contents);
}

async fetchTheme (src) {
Expand Down

0 comments on commit 9d9205f

Please sign in to comment.