Skip to content

Commit

Permalink
Fix command description
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Sobolev <[email protected]>
  • Loading branch information
haiodo committed Nov 11, 2024
1 parent 95ea034 commit 66aad62
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions common/config/rush/command-line.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@
{
"commandKind": "global",
"name": "doformat",
"summary": "Show a formatting errors if pressent",
"description": "use to build all docker containers required for platform",
"summary": "Do a format and show errors after it",
"description": "Do a format and show errors after it",
"safeForSimultaneousRushProcesses": true,
"shellCommand": "rush format && ./common/scripts/format-show.sh"
},
Expand Down
6 changes: 3 additions & 3 deletions server-plugins/notification-resources/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ export async function createCollabDocInfo (
const usersInfo = await ctx.with(
'get-user-info',
{},
async (ctx) => await getUsersInfo(ctx, [...Array.from(targets), originTx.modifiedBy as Ref<PersonAccount>], control)
(ctx) => getUsersInfo(ctx, [...Array.from(targets), originTx.modifiedBy as Ref<PersonAccount>], control)
)
const sender: SenderInfo = usersInfo.get(originTx.modifiedBy) ?? {
_id: originTx.modifiedBy
Expand Down Expand Up @@ -1337,8 +1337,8 @@ async function collectionCollabDoc (
await ctx.with(
'create-collab-doc-info',
{},
async (ctx) =>
await createCollabDocInfo(
(ctx) =>
createCollabDocInfo(
ctx,
collaborators as Ref<PersonAccount>[],
control,
Expand Down

0 comments on commit 66aad62

Please sign in to comment.