mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-28 16:30:56 -05:00
fix(editor): fix emoji picker data path
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
e7ca2f9894
commit
f786fe538b
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ import React, { useEffect, useRef } from 'react'
|
||||||
import { Popover } from 'react-bootstrap'
|
import { Popover } from 'react-bootstrap'
|
||||||
import type { PopoverProps } from 'react-bootstrap/Popover'
|
import type { PopoverProps } from 'react-bootstrap/Popover'
|
||||||
|
|
||||||
const EMOJI_DATA_PATH = '_next/static/js/emoji-data.json'
|
const EMOJI_DATA_PATH = '/_next/static/js/emoji-data.json'
|
||||||
|
|
||||||
const emojiPickerConfig: PickerConstructorOptions = {
|
const emojiPickerConfig: PickerConstructorOptions = {
|
||||||
dataSource: EMOJI_DATA_PATH
|
dataSource: EMOJI_DATA_PATH
|
||||||
|
|
Loading…
Reference in a new issue