Skip to content

Commit

Permalink
UBER-440: Fix link error message
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
  • Loading branch information
haiodo committed Jun 8, 2023
1 parent d413656 commit 6569cc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/text-editor/src/components/LinkPopup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
<script lang="ts">
import { createEventDispatcher } from 'svelte'
import { getEmbeddedLabel } from '@hcengineering/platform'
import { Card } from '@hcengineering/presentation'
import { EditBox } from '@hcengineering/ui'
import type { IntlString } from '@hcengineering/platform'
import textEditorPlugin from '../plugin'
export let link = ''
const dispatch = createEventDispatcher()
const linkPlaceholder = 'http://my.link.net' as IntlString
const linkPlaceholder = getEmbeddedLabel('http://my.link.net')
function save () {
dispatch('update', link)
Expand Down

0 comments on commit 6569cc7

Please sign in to comment.