Skip to content

Commit 50a496e

Browse files
committed
performed some minor fixes
1 parent 41a6b3a commit 50a496e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/manual/mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,10 +364,10 @@ nav:
364364
- id:
365365
- id get: 'cmd/tenant-id-get.md'
366366
- Yammer (yammer):
367-
- network:
368-
- network list: 'cmd/yammer/network/network-list.md'
369367
- message:
370368
- message list: 'cmd/yammer/message/message-list.md'
369+
- network:
370+
- network list: 'cmd/yammer/network/network-list.md'
371371
- Concepts:
372372
- 'Persisting connection': 'concepts/persisting-connection.md'
373373
- 'Authorization and access tokens': 'concepts/authorization-tokens.md'

src/o365/yammer/commands.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const prefix: string = 'yammer';
22

33
export default {
4-
YAMMER_NETWORK_LIST: `${prefix} network list`,
5-
YAMMER_MESSAGE_LIST: `${prefix} message list`
4+
YAMMER_MESSAGE_LIST: `${prefix} message list`,
5+
YAMMER_NETWORK_LIST: `${prefix} network list`
66
};

src/o365/yammer/commands/message/message-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class YammerMessageListCommand extends YammerCommand {
107107
cmd.log(this.items);
108108
}
109109
else {
110-
cmd.log(this.items.map(n => {
110+
cmd.log(this.items.map((n: any) => {
111111
let shortBody;
112112
let bodyToProcess = n.body.plain;
113113

0 commit comments

Comments
 (0)