Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Sharkman za patch 1 #116

Merged
merged 4 commits into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@ jobs:
with:
files: coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
- name: Build app
run: npm run build
- run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run playwright
if: matrix.os == 'ubuntu-latest'
- run: npm run playwright
if: matrix.os != 'ubuntu-latest'

end:
name: End State ✅✅✅
Expand Down
7 changes: 5 additions & 2 deletions src/frontend/lib/stores/MediaStore.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { MediaOutput, MediaOutputId } from "@shared/types/media";
import { derived, get, writable } from "svelte/store";

Check warning on line 2 in src/frontend/lib/stores/MediaStore.ts

View workflow job for this annotation

GitHub Actions / Lint Frontend

'get' is defined but never used
import { graphMall } from "./GraphStore";
import { commandStore } from "./CommandStore";

Expand Down Expand Up @@ -49,8 +49,11 @@
});
}

public async exportMedia(output: MediaOutput){
return await commandStore.runCommand("blix.exportMedia", {type: output.dataType, data: output.content});
public async exportMedia(output: MediaOutput) {
return await commandStore.runCommand("blix.exportMedia", {
type: output.dataType,
data: output.content as string,
});
}

public get subscribe() {
Expand Down
1 change: 1 addition & 0 deletions src/frontend/types/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from "./temp";
export * from "./selection-box";
Loading