Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SebiWrn committed Dec 13, 2023
1 parent 4953b2a commit e344b6c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web/ts/custom-elements/elements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ import * as help from "./help-icon";
export function defineElements() {
customElements.define("help-icon", help.HelpIcon);
console.log("Defined custom elements");
}
}
2 changes: 1 addition & 1 deletion web/ts/custom-elements/help-icon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ export class HelpIcon extends HTMLElement {
this.className = "m-0 p-0 text-xs";
this.style.textRendering = "";
}
}
}
2 changes: 1 addition & 1 deletion web/ts/entry/user.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/* This bundle contains all functionality that students depend on when not watching a video */
export * from "../global";
export * from "../course-overview";
export * from "../course-overview";
2 changes: 1 addition & 1 deletion web/ts/global.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { StatusCodes } from "http-status-codes";
import {defineElements} from "./custom-elements/elements";
import { defineElements } from "./custom-elements/elements";

export * from "./notifications";
export * from "./user-settings";
Expand Down

0 comments on commit e344b6c

Please sign in to comment.