Compare commits

..

No commits in common. "ac2beaf549feb41deabf5aaed8d0accb58c6d275" and "478d3751255a441bf39057b81f807ffe96a0e97a" have entirely different histories.

3 changed files with 4 additions and 6 deletions

View file

@ -305,7 +305,7 @@ export default observer(({ channel }: Props) => {
if (!state.draft.has(channel._id)) {
setMessage(text);
} else {
setMessage(`${state.draft.get(channel._id)?.content}\n${text}`);
setMessage(`${state.draft.get(channel._id)}\n${text}`);
}
}

View file

@ -259,7 +259,7 @@ export const Form = observer(({ page, callback }: Props) => {
<span>
<Text id="login.unofficial_instance" />{" "}
<a
href="https://developers.revolt.chat/faq.html"
href="https://developers.revolt.chat/faq/instances#what-is-a-third-party-instance"
style={{ color: "var(--accent)" }}
target="_blank"
rel="noreferrer">

View file

@ -369,9 +369,7 @@ function ListElement({
<KanbanList last={false} key={category.id}>
<div className="inner">
<Row>
<KanbanListHeader
{...provided.dragHandleProps}
onClick={startEditing}>
<KanbanListHeader {...provided.dragHandleProps}>
{editing !== undefined ? (
<input
value={editing}
@ -386,7 +384,7 @@ function ListElement({
id={category.id}
/>
) : (
<span>
<span onClick={startEditing}>
{category.title}
</span>
)}