Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlauer-Hax committed Mar 16, 2024
1 parent cdd12ac commit b86543c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion pages/admin/views/entryUser.ts
@@ -1,6 +1,5 @@
import { Entry } from "webgen/mod.ts";
import { Group } from "../../../spec/music.ts";
import { ProfileData, showProfilePicture } from "../../_legacy/helper.ts";

export function GroupEntry(x: Group) {
return Entry({
Expand Down
2 changes: 1 addition & 1 deletion pages/admin/views/menu.ts
Expand Up @@ -78,7 +78,7 @@ export const adminMenu = Navigation({
.onPromiseClick(async () => {
const monaco = await lazyMonaco();
const box = document.createElement("div");
const editor = monaco.editor.create(box, {
monaco.editor.create(box, {
value: JSON.stringify(it.val, null, 2),
language: "json",
theme: "vs-dark",
Expand Down
2 changes: 1 addition & 1 deletion pages/shared/restSpec.ts
Expand Up @@ -244,7 +244,7 @@ export const API = {
search: (query: string) => fetch(`${API.BASE_URL}admin/search?query=${query}`, {
headers: headers(API.getToken())
})
.then(json<any[]>())
.then(json<object[]>())
.catch(reject),
files: {
list: (offset: number | undefined = undefined) => {
Expand Down

0 comments on commit b86543c

Please sign in to comment.