Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: prevent config editor dialog overflow when there are too many file structure sections #2097

Closed
wants to merge 22 commits into from
Closed
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
350bc19
[Automated] Merged develop into target master
meteyou Dec 10, 2022
eac516e
[Automated] Merged develop into target master
meteyou Mar 12, 2023
3584c03
[Automated] Merged develop into target master
meteyou Apr 2, 2023
c6a3bbc
[Automated] Merged develop into target master
meteyou Jun 19, 2023
c07606a
[Automated] Merged develop into target master
meteyou Jun 19, 2023
4d241fc
[Automated] Merged develop into target master
meteyou Jul 24, 2023
1b763e2
[Automated] Merged develop into target master
meteyou Jul 30, 2023
c9dc251
[Automated] Merged develop into target master
meteyou Aug 12, 2023
54ce2e0
[Automated] Merged develop into target master
meteyou Aug 16, 2023
6884326
[Automated] Merged develop into target master
meteyou Oct 7, 2023
d3845f9
[Automated] Merged develop into target master
meteyou Oct 7, 2023
3ba23df
[Automated] Merged develop into target master
meteyou Dec 16, 2023
df7dc71
[Automated] Merged develop into target master
meteyou Dec 31, 2023
cea98a0
[Automated] Merged develop into target master
meteyou Feb 15, 2024
cc5e97a
[Automated] Merged develop into target master
meteyou Apr 28, 2024
c6c71ec
[Automated] Merged develop into target master
meteyou May 1, 2024
e639e08
[Automated] Merged develop into target master
meteyou May 4, 2024
4b44d44
[Automated] Merged develop into target master
meteyou Jul 14, 2024
2a20ad2
[Automated] Merged develop into target master
meteyou Dec 4, 2024
8b8b000
[Automated] Merged develop into target master
meteyou Dec 7, 2024
9ba039e
[Automated] Merged develop into target master
meteyou Dec 25, 2024
4fe8e64
add editor-content-height class to prevent dialog overflow
NV4RE Dec 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/components/TheEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<v-icon>{{ mdiCloseThick }}</v-icon>
</v-btn>
</template>
<v-card-text class="pa-0 d-flex">
<v-card-text class="pa-0 d-flex editor-content-height">
<codemirror-async
v-if="show"
ref="editor"
Expand Down Expand Up @@ -552,6 +552,10 @@ export default class TheEditor extends Mixins(BaseMixin) {
white-space: nowrap;
}

.editor-content-height {
height: calc(100dvh - 48px);
}

::v-deep .v-treeview-node__level + .v-treeview-node__level {
width: 12px;
}
Expand Down
Loading