Skip to content

Commit

Permalink
chore: Update title
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt committed Jun 30, 2024
1 parent 0cba020 commit d49b737
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>title</title>
<link rel="stylesheet">
<title>quak 🦆</title>
</head>
<script type="module" src="./lib/example.ts"></script>
<body></body>
Expand Down
8 changes: 2 additions & 6 deletions lib/clients/DataTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,7 @@ export class DataTable extends MosaicClient {
.orderby(
this.#orderby
.filter((o) => o.order !== "unset")
.map((o) =>
o.order === "asc" ? asc(o.field) : desc(o.field)
),
.map((o) => o.order === "asc" ? asc(o.field) : desc(o.field)),
)
.limit(this.#limit)
.offset(this.#offset);
Expand Down Expand Up @@ -350,9 +348,7 @@ function thcol(
});

signals.effect(() => {
sortButton.style.visibility = buttonVisible.value
? "visible"
: "hidden";
sortButton.style.visibility = buttonVisible.value ? "visible" : "hidden";
});

signals.effect(() => {
Expand Down

0 comments on commit d49b737

Please sign in to comment.