Skip to content

Commit dbb5bd8

Browse files
committed
fix name back to chat, fix some spacing, and jupyter "close and halt" shortcut
1 parent 1aeba2f commit dbb5bd8

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

src/packages/frontend/chat/chat-log.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export function ChatLog({
155155
<>
156156
{visibleHashtags.size > 0 && (
157157
<HashtagBar
158-
style={{ margin: "5px 0" }}
158+
style={{ margin: "3px 0" }}
159159
actions={{
160160
set_hashtag_state: (tag, state) => {
161161
actions.setHashtagState(tag, state);

src/packages/frontend/chat/video/video-chat.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ export class VideoChat {
2626
}
2727

2828
close = () => {
29-
console.log("close video chat!");
3029
this.closeVideoChatWindow();
3130
delete this.intervalId;
3231
};

src/packages/frontend/frame-editors/chat-editor/editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ const chatroom: EditorDescription = {
5757
"redo",
5858
"decrease_font_size",
5959
"increase_font_size",
60+
"scrollToTop",
6061
"scrollToBottom",
61-
"videoChat",
6262
]),
6363
} as const;
6464

src/packages/frontend/frame-editors/jupyter-editor/editor.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ const jupyter_cell_notebook: EditorDescription = {
7171
"jupyter-cell-format",
7272
"jupyter-cell-toolbar",
7373
"jupyter-nbgrader validate",
74+
"halt_jupyter",
7475
]),
7576
customizeCommands: {
7677
guide: {

src/packages/frontend/i18n/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ export const labels = defineMessages({
390390
},
391391
chat: {
392392
id: "labels.chat",
393-
defaultMessage: "Side Chat",
393+
defaultMessage: "Chat",
394394
description: "Short label on a button to open a chatroom",
395395
},
396396
created: {

0 commit comments

Comments
 (0)