File tree Expand file tree Collapse file tree 2 files changed +26
-5
lines changed
frontend/src/components/tiptap-extensions Expand file tree Collapse file tree 2 files changed +26
-5
lines changed Original file line number Diff line number Diff line change 132132 v-if =" editor"
133133 :editor =" editor"
134134 :should-show =" shouldShowTableMenu"
135- :tippy-options =" { duration: 100, zIndex: 50, offset: [0, 10] }"
135+ :tippy-options =" {
136+ duration: 100,
137+ zIndex: 50,
138+ offset: [0, 10],
139+ popperOptions: {
140+ modifiers: [
141+ {
142+ name: 'preventOverflow',
143+ options: {
144+ boundary: 'viewport',
145+ padding: 8,
146+ },
147+ },
148+ {
149+ name: 'flip',
150+ options: {
151+ fallbackPlacements: ['top', 'bottom'],
152+ },
153+ },
154+ ],
155+ },
156+ }"
136157 class =" wiki-bubble-menu"
137158 >
138159 <div class =" bubble-menu-buttons" >
Original file line number Diff line number Diff line change 5353 <!-- Main content + TOC area -->
5454 {% block content %}
5555 < main class ="flex-1 min-w-0 px-4 py-6 lg:px-6 lg:py-8 xl:px-12 ">
56- < div class ="w-full ">
57- {% block body %}{% endblock %}
58- </ div >
59- </ main >
56+ < div class ="w-full ">
57+ {% block body %}{% endblock %}
58+ </ div >
59+ </ main >
6060
6161 {% endblock %}
6262 </ div >
You can’t perform that action at this time.
0 commit comments