Skip to content

Commit

Permalink
Merge pull request #41 from biigle/fix-slider-focus
Browse files Browse the repository at this point in the history
Fix slider focus to enable keyboard shortcuts again
  • Loading branch information
mzur authored Aug 21, 2024
2 parents 364bdfa + 7d02567 commit f2856a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
docker pull ghcr.io/biigle/worker:latest
- name: Start test database
run: docker-compose up -d --no-build database_testing && sleep 5
run: docker compose up -d --no-build database_testing && sleep 5
working-directory: ../core

- name: Run tests
run: docker-compose run --rm -u 1001 worker php -d memory_limit=1G vendor/bin/phpunit --random-order --filter 'Biigle\\Tests\\Modules\\'${MODULE_NAME}
run: docker compose run --rm -u 1001 worker php -d memory_limit=1G vendor/bin/phpunit --random-order --filter 'Biigle\\Tests\\Modules\\'${MODULE_NAME}
working-directory: ../core
2 changes: 1 addition & 1 deletion src/resources/views/annotationsSettingsTab.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<component :is="plugins.magicSam" :settings="settings" inline-template>
<div class="sidebar-tab__section">
<h5 title="Refresh rate for updating Magic SAM proposals">Magic SAM refresh rate (<span v-text="stepName"></span>)</h5>
<input type="range" min="0" max="4" step="1" v-model="stepIndex">
<input type="range" min="0" max="4" step="1" v-model="stepIndex" onmouseup="this.blur()">
</div>
</component>

0 comments on commit f2856a0

Please sign in to comment.