Skip to content

Commit

Permalink
Fix: create an object panel not visible
Browse files Browse the repository at this point in the history
  • Loading branch information
nboisteault committed Feb 15, 2024
1 parent a1aebeb commit b7c7813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/src/components/FeatureToolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default class FeatureToolbar extends HTMLElement {
<i class="icon-plus-sign"></i>
<span class="caret"></span>
</button>
<ul class="dropdown-menu pull-right" role="menu">
<ul class="dropdown-menu" role="menu">
${this.editableChildrenLayers.map((child) =>
html`<li><a data-child-layer-id="${child.layerId}" @click=${() => this.createChild(child)}>${child.title}</a></li>`)}
</ul>
Expand Down

1 comment on commit b7c7813

@nboisteault
Copy link
Member Author

@nboisteault nboisteault commented on b7c7813 Feb 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ref: paid support ticket 2738
@mdouchin the visibility problem remains when the dock is not wide enough but at least we can scroll:

image

Bootstrap 5 would help :) https://getbootstrap.com/docs/5.3/components/dropdowns/#centered

Please sign in to comment.