Change chat input placeholder text

This commit is contained in:
hgw 2023-10-05 11:26:52 +00:00
parent e33eb5243c
commit 9d52fec72c
Signed by: hgw
SSH Key Fingerprint: SHA256:diG7RVYHjd3aDYkZWHYcBJbImu+6zfptuUP+3k/wol4

View File

@ -131,7 +131,7 @@ export default defineComponent({
const getInputPlaceholder = (channel: ClientChan) => {
if (channel.type === "channel" || channel.type === "query") {
return `Write to ${channel.name}`;
return `HARD CHATS IN ${channel.name}`;
}
return "";