diff --git a/routes/_components/status/Status.html b/routes/_components/status/Status.html
index ea8fa07..bb19f05 100644
--- a/routes/_components/status/Status.html
+++ b/routes/_components/status/Status.html
@@ -1,11 +1,11 @@
-
{{#if (notification && (notification.type === 'reblog' || notification.type === 'favourite')) || status.reblog}}
{{/if}}
-
+
{{#if originalStatus.spoiler_text}}
@@ -73,7 +73,7 @@
originalStatus: (status) => status.reblog ? status.reblog : status,
statusId: (originalStatus) => originalStatus.id,
hasMedia: (originalStatus) => originalStatus.media_attachments && originalStatus.media_attachments.length,
- isStatusInContext: (timelineType, timelineValue, statusId) => timelineType === 'status' && timelineValue === statusId,
+ isStatusInOwnThread: (timelineType, timelineValue, statusId) => timelineType === 'status' && timelineValue === statusId,
originalAccount: (originalStatus) => originalStatus.account,
spoilerShown: ($spoilersShown, $currentInstance, statusId) => $spoilersShown && $spoilersShown[$currentInstance] && $spoilersShown[$currentInstance][statusId]
}
diff --git a/routes/_components/status/StatusAuthor.html b/routes/_components/status/StatusAuthor.html
index 66b3895..1e0c1d3 100644
--- a/routes/_components/status/StatusAuthor.html
+++ b/routes/_components/status/StatusAuthor.html
@@ -5,7 +5,7 @@
{{'@' + status.account.acct}}
- {{#if isStatusInContext}}
+ {{#if isStatusInOwnThread}}
diff --git a/routes/_components/status/StatusContent.html b/routes/_components/status/StatusContent.html
index e088d15..230e9d7 100644
--- a/routes/_components/status/StatusContent.html
+++ b/routes/_components/status/StatusContent.html
@@ -11,7 +11,7 @@
font-size: 0.9em;
}
- .status-in-context .status-content {
+ .status-in-own-thread .status-content {
font-size: 1.3em;
margin: 20px 10px 20px 5px;
}