Skip to content

Commit

Permalink
fix name back to chat, fix some spacing, and jupyter "close and halt"…
Browse files Browse the repository at this point in the history
… shortcut
  • Loading branch information
williamstein committed Oct 5, 2024
1 parent 1aeba2f commit dbb5bd8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/packages/frontend/chat/chat-log.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export function ChatLog({
<>
{visibleHashtags.size > 0 && (
<HashtagBar
style={{ margin: "5px 0" }}
style={{ margin: "3px 0" }}
actions={{
set_hashtag_state: (tag, state) => {
actions.setHashtagState(tag, state);
Expand Down
1 change: 0 additions & 1 deletion src/packages/frontend/chat/video/video-chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export class VideoChat {
}

close = () => {
console.log("close video chat!");
this.closeVideoChatWindow();
delete this.intervalId;
};
Expand Down
2 changes: 1 addition & 1 deletion src/packages/frontend/frame-editors/chat-editor/editor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ const chatroom: EditorDescription = {
"redo",
"decrease_font_size",
"increase_font_size",
"scrollToTop",
"scrollToBottom",
"videoChat",
]),
} as const;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ const jupyter_cell_notebook: EditorDescription = {
"jupyter-cell-format",
"jupyter-cell-toolbar",
"jupyter-nbgrader validate",
"halt_jupyter",
]),
customizeCommands: {
guide: {
Expand Down
2 changes: 1 addition & 1 deletion src/packages/frontend/i18n/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ export const labels = defineMessages({
},
chat: {
id: "labels.chat",
defaultMessage: "Side Chat",
defaultMessage: "Chat",
description: "Short label on a button to open a chatroom",
},
created: {
Expand Down

0 comments on commit dbb5bd8

Please sign in to comment.