Files
discourse/plugins/chat/assets/javascripts/discourse/components/chat-channel-about-view.js
Martin Brennan 31f6811a93 FIX: Change wording from title -> name in channel about page (#19889)
We refer to the channel name rather than title elsewhere
(including the new channel modal), so we should be consistent.
Title is an internal abstraction, since DM channels cannot have
names (currently).

Also change the name field on channel edit to a input type="text"
rather than a textarea, since we don't want a huge input here.
2023-01-18 09:13:33 +10:00

12 lines
302 B
JavaScript

import Component from "@ember/component";
import { inject as service } from "@ember/service";
export default class ChatChannelAboutView extends Component {
@service chat;
tagName = "";
channel = null;
onEditChatChannelName = null;
onEditChatChannelDescription = null;
isLoading = false;
}