File tree Expand file tree Collapse file tree 1 file changed +34
-22
lines changed
frontend/components/containers/annotation Expand file tree Collapse file tree 1 file changed +34
-22
lines changed Original file line number Diff line number Diff line change 3
3
<span >
4
4
{{ page }} of {{ total }}
5
5
</span >
6
- <v-btn
7
- v-shortkey.once =" ['arrowleft']"
8
- text
9
- :disabled =" page===1"
10
- fab
11
- small
12
- @shortkey =" prevPage"
13
- @click =" prevPage"
14
- >
15
- <v-icon >mdi-chevron-left</v-icon >
16
- </v-btn >
17
- <v-btn
18
- v-shortkey.once =" ['arrowright']"
19
- text
20
- :disabled =" page===total"
21
- fab
22
- small
23
- @shortkey =" nextPage"
24
- @click =" nextPage"
25
- >
26
- <v-icon >mdi-chevron-right</v-icon >
27
- </v-btn >
6
+ <v-tooltip bottom >
7
+ <template v-slot :activator =" { on } " >
8
+ <v-btn
9
+ v-shortkey.once =" ['arrowleft']"
10
+ text
11
+ :disabled =" page===1"
12
+ fab
13
+ small
14
+ v-on =" on"
15
+ @shortkey =" prevPage"
16
+ @click =" prevPage"
17
+ >
18
+ <v-icon >mdi-chevron-left</v-icon >
19
+ </v-btn >
20
+ </template >
21
+ <span >←</span >
22
+ </v-tooltip >
23
+ <v-tooltip bottom >
24
+ <template v-slot :activator =" { on } " >
25
+ <v-btn
26
+ v-shortkey.once =" ['arrowright']"
27
+ text
28
+ :disabled =" page===total"
29
+ fab
30
+ small
31
+ v-on =" on"
32
+ @shortkey =" nextPage"
33
+ @click =" nextPage"
34
+ >
35
+ <v-icon >mdi-chevron-right</v-icon >
36
+ </v-btn >
37
+ </template >
38
+ <span >→</span >
39
+ </v-tooltip >
28
40
</div >
29
41
</template >
30
42
You can’t perform that action at this time.
0 commit comments