DEV: Fix random typos (#20937)

This commit is contained in:
Jarek Radosz
2023-04-03 19:27:32 +02:00
committed by GitHub
parent 6142c50915
commit 29e2e3ff3b
9 changed files with 18 additions and 18 deletions

View File

@@ -18,7 +18,7 @@ module Service
# Simple structure to hold the context of the service during its whole lifecycle.
class Context < OpenStruct
# @return [Boolean] returns +true+ if the conext is set as successful (default)
# @return [Boolean] returns +true+ if the context is set as successful (default)
def success?
!failure?
end

View File

@@ -45,7 +45,7 @@ export default class ChatThreadPanel extends Component {
this.requestedTargetMessageId = parseInt(this.args.targetMessageId, 10);
}
// TODO (martin) Loading/scrolling to selected messagew
// TODO (martin) Loading/scrolling to selected message
// this.highlightOrFetchMessage(this.requestedTargetMessageId);
// if (this.requestedTargetMessageId) {
// } else {
@@ -145,7 +145,7 @@ export default class ChatThreadPanel extends Component {
messageData.expanded = !(messageData.hidden || messageData.deleted_at);
}
// newest has to be in after fetcg callback as we don't want to make it
// newest has to be in after fetch callback as we don't want to make it
// dynamic or it will make the pane jump around, it will disappear on reload
if (
!foundFirstNew &&