Skip to content

Commit

Permalink
fix(UI): modal processes list does not regain size on window resize
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Mar 5, 2021
1 parent 4862d51 commit 5d7efa7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/renderer/components/ModalProcessesList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
class="slider no-border"
type="range"
min="0"
max="30"
max="15"
step="0.5"
@change="setRefreshInterval"
>
Expand Down Expand Up @@ -296,6 +296,10 @@ export default {
.modal-container {
max-width: 75vw;
margin-top: 10vh;
.modal-body {
height: 80vh;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/ProcessesListRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<div>
<div>
<TextEditor
:value="row.info"
:value="row.info || ''"
editor-class="textarea-editor"
:mode="editorMode"
:read-only="true"
Expand Down

0 comments on commit 5d7efa7

Please sign in to comment.