Skip to content
Snippets Groups Projects
Verified Commit edf884a4 authored by Julian's avatar Julian Committed by magicfelix
Browse files

Explain personal note add button with tooltip

parent ca14f342
No related branches found
No related tags found
1 merge request!284Draft: Redesign entering of lesson documentation
......@@ -175,19 +175,24 @@ export default {
</v-chip>
</template>
</div>
<v-btn
class="ma-1"
color="primary"
icon
outlined
v-bind="attrs"
v-on="on"
@click="createPersonalNote"
>
<v-icon>
mdi-plus
</v-icon>
</v-btn>
<v-tooltip bottom>
<template v-slot:activator="{ on, attrs }">
<v-btn
class="ma-1"
color="primary"
icon
outlined
v-bind="attrs"
v-on="on"
@click="createPersonalNote"
>
<v-icon>
mdi-plus
</v-icon>
</v-btn>
</template>
<span v-text="$root.django.gettext('Add personal note')"></span>
</v-tooltip>
</template>
<v-card>
<v-card-title>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment