mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00

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.
12 lines
302 B
JavaScript
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;
|
|
}
|