mirror of
https://github.com/revoltchat/revite.git
synced 2025-02-25 09:41:01 -05:00
Compare commits
No commits in common. "ac2beaf549feb41deabf5aaed8d0accb58c6d275" and "478d3751255a441bf39057b81f807ffe96a0e97a" have entirely different histories.
ac2beaf549
...
478d375125
3 changed files with 4 additions and 6 deletions
|
@ -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}`);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
)}
|
||||
|
|
Loading…
Add table
Reference in a new issue