DEV: Update `DPopover` to `DTooltip` to remove deprecation warning (#71)

This commit is contained in:
Keegan George 2023-11-10 09:36:47 -08:00 committed by GitHub
parent eb4e88a3d4
commit 34a75d3275
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 3 deletions

View File

@ -46,8 +46,12 @@
{{/if}} {{/if}}
</div> </div>
{{/if}} {{/if}}
<DPopover> <DTooltip
<DButton class="trigger" @icon="question" /> @icon="question"
@triggers="click"
@arrow={{false}}
class="btn btn-icon no-text"
>
<ul> <ul>
<h4>{{theme-i18n "discourse_table_builder.modal.help.title"}}</h4> <h4>{{theme-i18n "discourse_table_builder.modal.help.title"}}</h4>
<li> <li>
@ -64,7 +68,7 @@
</li> </li>
<li>{{theme-i18n "discourse_table_builder.modal.help.options"}}</li> <li>{{theme-i18n "discourse_table_builder.modal.help.options"}}</li>
</ul> </ul>
</DPopover> </DTooltip>
</div> </div>
</:footer> </:footer>
</DModal> </DModal>