Skip to content

Commit

Permalink
Fix query button
Browse files Browse the repository at this point in the history
  • Loading branch information
atjn committed Dec 14, 2023
1 parent 5f9b274 commit a16b9ee
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ const config: PlaywrightTestConfig = {
testDir: "tests",
testMatch: /(.+\.)?(test|spec)\.[jt]s/,
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
{
name: "firefox",
use: { ...devices["Desktop Firefox"] },
},
{
name: "webkit",
use: { ...devices["Desktop Safari"] },
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/query/QueryNav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<h1>Queries</h1>
</div>
<div class="buttons">
<SvgButton icon={Add} click={addQuery} size={30} id="add-query" />
<SvgButton icon={Add} on:click={addQuery} size={30} id="add-query" />
<SvgButton
icon={Arrow_right}
on:click={runAllQueries}
Expand Down

0 comments on commit a16b9ee

Please sign in to comment.