Skip to content

Commit

Permalink
fix: HeightResizable auto scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
arildm committed Sep 30, 2024
1 parent 3572c30 commit 3204a03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ As this project is a user-facing application, the places in the semantic version
- Show loading spinners when downloading export files
- Strip slash from Matomo url
- Backend error messages are ignored when fetching files with "blob" as responseType [#171](https://github.com/spraakbanken/mink-frontend/issues/171)
- Remove unnecessary scroll bars from HeightResizable, used in code boxes

## [1.6.1] (2024-08-13)

Expand Down
2 changes: 1 addition & 1 deletion src/components/HeightResizable.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts"></script>

<template>
<div class="overflow-scroll h-fit max-h-60 resize-y"><slot /></div>
<div class="overflow-auto h-fit max-h-60 resize-y"><slot /></div>
</template>

<style scoped>
Expand Down

0 comments on commit 3204a03

Please sign in to comment.