Skip to content

Commit

Permalink
tentative fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-intuitem committed Sep 29, 2024
1 parent 6fea6b9 commit ad8652e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/lib/components/ModelTable/LibraryActions.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
action="/libraries/{library.id}?/load"
use:enhance={() => {
loading.form = true;
loading.library = library.id;
loading.library = library.urn;
return async ({ update }) => {
loading.form = false;
loading.library = '';
Expand Down Expand Up @@ -102,7 +102,7 @@
action="/libraries/{library.id}?/update"
use:enhance={() => {
loading.form = true;
loading.library = library.id;
loading.library = library.urn;
return async ({ update }) => {
loading.form = false;
loading.library = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
action="/libraries/{data.library.id}?/load"
use:enhance={() => {
loading.form = true;
loading.library = data.library.id;
loading.library = data.library.urn;
return async ({ update }) => {
loading.form = false;
loading.library = '';
Expand Down
1 change: 1 addition & 0 deletions frontend/tests/e2e-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ fi
echo "=========================================================================================="

if [[ " ${SCRIPT_SHORT_ARGS[@]} " =~ " -q " ]]; then
echo "| quick mode"
npx playwright test ./tests/functional/"${TEST_PATHS[@]}" -x --project=chromium "${SCRIPT_LONG_ARGS[@]}"
else
npx playwright test ./tests/functional/"${TEST_PATHS[@]}" "${SCRIPT_LONG_ARGS[@]}"
Expand Down

0 comments on commit ad8652e

Please sign in to comment.