diff --git a/web/app/components/input/input.jsx b/web/app/components/input/input.jsx index 8fe1aa55..1fc54368 100644 --- a/web/app/components/input/input.jsx +++ b/web/app/components/input/input.jsx @@ -10,6 +10,7 @@ import TextareaAutosize from 'components/input/textarea-autosize'; const RSS_THREAD_URL = `${BASE_URL}${API_BASE}/rss/post?site=${siteId}&url=${url}`; const RSS_SITE_URL = `${BASE_URL}${API_BASE}/rss/site?site=${siteId}`; +const RSS_REPLIES_URL = `${BASE_URL}${API_BASE}/rss/reply?site=${siteId}&user=`; export default class Input extends Component { constructor(props) { @@ -109,7 +110,7 @@ export default class Input extends Component { render(props, { isDisabled, isErrorShown, preview, maxLength, text }) { const charactersLeft = maxLength - text.length; - const { mods = {}, errorMessage } = props; + const { mods = {}, errorMessage, userId } = props; return (