Skip to content

Commit

Permalink
[#299] Removing description column.
Browse files Browse the repository at this point in the history
  • Loading branch information
diegomanuel committed Apr 19, 2021
1 parent 1bb9d2c commit 5413902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/screens/actions/public-feed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default {
{key: "date", value: "date", parser: (p) => formatToUIDate(p.date)},
{key: "cooperative", value: "cooperative", parser: (p) => capitalizeFirstChar(p.cooperativeName)},
{key: "name", value: "name", parser: (p) => formatText(p.name, 50)},
{key: "description", value: "description", parser: (p) => formatText(p.description||"", 100)},
//{key: "description", value: "description", parser: (p) => formatText(sanitizeMarkdown(p.description||""), 100)},
{key: "principles", value: "principles", parser: (p) => parsePrinciples(this.$t, p.principles)}
],
actions: [],
Expand All @@ -103,7 +103,7 @@ export default {
},
onGetMore({more, done}) {
const limit = 2;
//this.isLoading = true;
//this.isLoading = true; // Disabled because the visual effect is annoying!
return api.getPublicActions(more, limit).then((data) => {
this.isLoading = false;
return done(data.actions);
Expand Down

0 comments on commit 5413902

Please sign in to comment.