summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/wwwroot
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Web/wwwroot')
-rw-r--r--src/SMAPI.Web/wwwroot/Content/js/log-parser.js13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
index c16b237a..1984d58f 100644
--- a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
+++ b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
@@ -347,10 +347,6 @@ smapi.logParser = function (data, sectionUrl) {
type: Object,
required: true
},
- sectionExpanded: {
- type: Boolean,
- required: false
- },
highlight: {
type: Boolean,
required: false
@@ -379,7 +375,7 @@ smapi.logParser = function (data, sectionUrl) {
const events = {};
let toggleMessage;
if (msg.IsStartOfSection) {
- const visible = context.props.sectionExpanded;
+ const visible = msg.SectionName && window.app && app.sectionsAllow(msg.SectionName);
events.click = smapi.clickLogLine;
toggleMessage = visible ?
'This section is shown. Click here to hide it.' :
@@ -477,13 +473,6 @@ smapi.logParser = function (data, sectionUrl) {
// Maybe not strictly necessary, but the Vue template is being
// weird about accessing data entries on the app rather than
// computed properties.
- visibleSections: function () {
- const ret = [];
- for (const [k, v] of Object.entries(this.showSections))
- if (v !== false)
- ret.push(k);
- return ret;
- },
hideContentPacks: function () {
return !data.showContentPacks;
},