mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 09:23: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>
|
||||
<div>
|
||||
<div :title="shareTitle">
|
||||
<div :title="shareTitle" :data-html="true" data-toggle="tooltip" data-placement="left">
|
||||
<button class="btn"
|
||||
id="share-button"
|
||||
type="button"
|
||||
|
@ -73,6 +73,7 @@ export default {
|
|||
mounted() {
|
||||
// move modal to body to avoid z-index issues
|
||||
$('body').append($(this.$refs.modal));
|
||||
$('[data-toggle="tooltip"]').tooltip();
|
||||
},
|
||||
methods: {
|
||||
enableShare() {
|
||||
|
|
|
@ -1192,7 +1192,7 @@ en:
|
|||
shareable_links:
|
||||
share: "Share"
|
||||
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:
|
||||
title: "Notes"
|
||||
no_description: "No task description"
|
||||
|
|
Loading…
Reference in a new issue