feat: hide quick add magic help behind a tooltip #3353

Merged
konrad merged 13 commits from feature/hide-quick-add-magic-help into main 2023-06-05 15:02:43 +00:00
Showing only changes of commit 2c9693a83e - Show all commits

View File

@ -1,5 +1,5 @@
<template>
<div v-if="mode !== 'disabled' && prefixes !== undefined">
<template v-if="mode !== 'disabled' && prefixes !== undefined">
dpschen marked this conversation as resolved Outdated

Remove wrapper div and use template instead

Remove wrapper div and use template instead

Ah, I thought you couldn't use a template as root node. TIL.
I guess that changed in vue 3?

Ah, I thought you couldn't use a `template` as root node. TIL. I guess that changed in vue 3?

Now changed

Now changed

Ah, I thought you couldn't use a template as root node. TIL.
I guess that changed in vue 3?

Unsure, but yes might be!

> Ah, I thought you couldn't use a `template` as root node. TIL. > I guess that changed in vue 3? Unsure, but yes might be!
<BaseButton
@click="() => visible = true"
class="icon is-small show-helper-text"
@ -90,7 +90,7 @@
</ul>
</card>
</modal>
</div>
</template>
</template>
<script setup lang="ts">