mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-12 16:14:58 +08:00
Merge pull request #7786 from aignatov-bio/ai-sci-10960-fix-bold-tooltip
Fix shared task tooltip [SCI-10960]
This commit is contained in:
commit
28333e94ed
2 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div :title="shareTitle">
|
<div :title="shareTitle" :data-html="true" data-toggle="tooltip" data-placement="left">
|
||||||
<button class="btn"
|
<button class="btn"
|
||||||
id="share-button"
|
id="share-button"
|
||||||
type="button"
|
type="button"
|
||||||
|
@ -73,6 +73,7 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
// move modal to body to avoid z-index issues
|
// move modal to body to avoid z-index issues
|
||||||
$('body').append($(this.$refs.modal));
|
$('body').append($(this.$refs.modal));
|
||||||
|
$('[data-toggle="tooltip"]').tooltip();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
enableShare() {
|
enableShare() {
|
||||||
|
|
|
@ -1192,7 +1192,7 @@ en:
|
||||||
shareable_links:
|
shareable_links:
|
||||||
share: "Share"
|
share: "Share"
|
||||||
shared: "Shared"
|
shared: "Shared"
|
||||||
disabled: "Sharing is disabled for your team.\nAsk your team admin to enable sharing in the team settings."
|
disabled: "<b>Sharing is disabled for your team.</b><br>Ask your team admin to enable sharing in the team settings."
|
||||||
notes:
|
notes:
|
||||||
title: "Notes"
|
title: "Notes"
|
||||||
no_description: "No task description"
|
no_description: "No task description"
|
||||||
|
|
Loading…
Add table
Reference in a new issue