fix: styling error + word error

This commit is contained in:
Camille 2023-01-24 13:51:53 +01:00
parent 82d036d344
commit 55e4b93562
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ export const welcomeTour: IOnBoardingMsg[] = [
title: t('Sharing'), title: t('Sharing'),
body: () => [ body: () => [
dom('p', t('Use the Share button ({{share}}) to share the document or export data.', dom('p', t('Use the Share button ({{share}}) to share the document or export data.',
{share:TopBarButtonIcon(t('Share'))})) {share: TopBarButtonIcon(t('Share'))}))
], ],
placement: 'bottom', placement: 'bottom',
cropPadding: true, cropPadding: true,

View File

@ -5,7 +5,7 @@ import {icon} from 'app/client/ui2018/icons';
import {cssLink} from 'app/client/ui2018/links'; import {cssLink} from 'app/client/ui2018/links';
import {dom, styled} from 'grainjs'; import {dom, styled} from 'grainjs';
const t = makeT('DiscussionEditor'); const t = makeT('EditorTooltip');
export function showTooltipToCreateFormula(editorDom: HTMLElement, convert: () => void) { export function showTooltipToCreateFormula(editorDom: HTMLElement, convert: () => void) {
function buildTooltip(ctl: ITooltipControl) { function buildTooltip(ctl: ITooltipControl) {