mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-14 09:04:56 +08:00
Fix tooltip on NA button [SCI-11848]
This commit is contained in:
parent
c8101013d9
commit
47204afbd9
1 changed files with 1 additions and 6 deletions
|
@ -19,8 +19,7 @@
|
|||
{{ i18n.t('forms.fields.submitted_by', { date: field.field_value.submitted_at, user: field.field_value.submitted_by_full_name}) }}
|
||||
</span>
|
||||
<button class="btn btn-secondary mb-0.5"
|
||||
:key="this.field.field_value?.value"
|
||||
:title="this.field.field_value?.value ? i18n.t('forms.fields.mark_as_na_tooltip') : ''"
|
||||
:title="i18n.t('forms.fields.mark_as_na_tooltip')"
|
||||
data-toggle="tooltip"
|
||||
data-placement="top"
|
||||
:disabled="disabled"
|
||||
|
@ -112,10 +111,6 @@ export default {
|
|||
value,
|
||||
this.markAsNa
|
||||
);
|
||||
|
||||
setTimeout(() => {
|
||||
$('[data-toggle="tooltip"]').tooltip();
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue