From aaeea2bb1d357d41427933b1d20644d42bbd75bc Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 30 Aug 2020 11:57:27 -0700 Subject: [PATCH] Pin emoji picker to a specific min'ed version --- webroot/js/components/chat/chat-input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webroot/js/components/chat/chat-input.js b/webroot/js/components/chat/chat-input.js index a774c6ec6..a8dada0d9 100644 --- a/webroot/js/components/chat/chat-input.js +++ b/webroot/js/components/chat/chat-input.js @@ -2,7 +2,7 @@ import { h, Component, createRef } from 'https://unpkg.com/preact?module'; import htm from 'https://unpkg.com/htm?module'; const html = htm.bind(h); -import { EmojiButton } from 'https://cdn.skypack.dev/@joeattardi/emoji-button'; +import { EmojiButton } from 'https://cdn.skypack.dev/pin/@joeattardi/emoji-button@v4.1.0-v8psdkkxts3LNdpA0m5Q/min/@joeattardi/emoji-button.js'; import ContentEditable from './content-editable.js'; import { generatePlaceholderText, getCaretPosition, convertToText, convertOnPaste } from '../../utils/chat.js'; import { getLocalStorage, setLocalStorage } from '../../utils/helpers.js';