Skip to content

Commit

Permalink
Fix max-height issue for ItemPicker in safari
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinDY committed May 26, 2023
1 parent 41cbe2f commit 947fe14
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Expand Up @@ -27,7 +27,7 @@
:module="module"
:fields.sync="currentFields"
disable-system-fields
style="max-height: 70vh;"
style="height: 70vh;"
/>
</b-tab>
</b-tabs>
Expand Down
Expand Up @@ -23,7 +23,7 @@
<field-picker
:module="module"
:fields.sync="filteredFields"
style="max-height: 71vh;"
style="height: 71vh;"
/>
</b-card-body>
</b-modal>
Expand Down
4 changes: 2 additions & 2 deletions client/web/compose/src/components/Admin/Module/Validation.vue
Expand Up @@ -15,7 +15,7 @@
:fields.sync="strictFields"
:field-subset="module.fields"
disable-system-fields
style="max-height: 35vh;"
style="height: 35vh;"
class="mt-3"
/>
</b-form-group>
Expand All @@ -33,7 +33,7 @@
:fields.sync="nonStrictFields"
:field-subset="module.fields"
disable-system-fields
style="max-height: 35vh;"
style="height: 35vh;"
class="mt-3"
/>
</b-form-group>
Expand Down
Expand Up @@ -84,7 +84,7 @@
<field-picker
:module="fieldModule"
:fields.sync="options.fields"
style="max-height: 52vh;"
style="height: 52vh;"
/>
</b-col>
</b-row>
Expand Down
Expand Up @@ -71,7 +71,7 @@
<field-picker
:module="recordListModule"
:fields.sync="options.fields"
style="max-height: 40vh;"
style="height: 40vh;"
/>
</b-col>
</b-row>
Expand All @@ -97,7 +97,7 @@
:fields.sync="options.editFields"
:field-subset="options.fields"
disable-system-fields
style="max-height: 40vh;"
style="height: 40vh;"
/>
</b-form-group>

Expand Down
Expand Up @@ -14,7 +14,7 @@
:system-fields="systemFields"
:disabled-types="disabledTypes"
:fields.sync="selectedFields"
style="max-height: 45vh;"
style="height: 45vh;"
/>
</b-form-group>

Expand Down

0 comments on commit 947fe14

Please sign in to comment.