@sprucelabs/spruce-feed-view-controllers 15.0.17 → 15.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -23,7 +23,6 @@ class FeedCardViewController extends AbstractViewController {
|
|
|
23
23
|
FeedVc() {
|
|
24
24
|
return this.Controller('feed', {
|
|
25
25
|
items: [],
|
|
26
|
-
scrollMode: 'inline',
|
|
27
26
|
onSubmitMessage: this.handleSubmitForm.bind(this),
|
|
28
27
|
});
|
|
29
28
|
}
|
|
@@ -144,6 +143,7 @@ class FeedCardViewController extends AbstractViewController {
|
|
|
144
143
|
const client = yield this.connectToApi();
|
|
145
144
|
yield client.on('feed.did-update-feed::v2023_03_04', this.handleDidUpdateFeed);
|
|
146
145
|
if (recipientId) {
|
|
146
|
+
this.feedVc.setScrollMode('inline');
|
|
147
147
|
yield Promise.all([
|
|
148
148
|
this.subscribe(client, {
|
|
149
149
|
toPersonId: recipientId,
|
|
@@ -16,7 +16,6 @@ class FeedCardViewController extends heartwood_view_controllers_1.AbstractViewCo
|
|
|
16
16
|
FeedVc() {
|
|
17
17
|
return this.Controller('feed', {
|
|
18
18
|
items: [],
|
|
19
|
-
scrollMode: 'inline',
|
|
20
19
|
onSubmitMessage: this.handleSubmitForm.bind(this),
|
|
21
20
|
});
|
|
22
21
|
}
|
|
@@ -128,6 +127,7 @@ class FeedCardViewController extends heartwood_view_controllers_1.AbstractViewCo
|
|
|
128
127
|
const client = await this.connectToApi();
|
|
129
128
|
await client.on('feed.did-update-feed::v2023_03_04', this.handleDidUpdateFeed);
|
|
130
129
|
if (recipientId) {
|
|
130
|
+
this.feedVc.setScrollMode('inline');
|
|
131
131
|
await Promise.all([
|
|
132
132
|
this.subscribe(client, {
|
|
133
133
|
toPersonId: recipientId,
|