aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline/timeline.js
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2020-11-04 06:04:19 +0000
committerShpuld Shpludson <shp@cock.li>2020-11-04 06:04:19 +0000
commitdbeecd18acfc14920c49324e08600dadba7127d7 (patch)
treed23de6168ff21eb2bd35db7563700f9bf0ad3e60 /src/components/timeline/timeline.js
parentb485d21ba91629931f2846eafaed7ec04d73c8c8 (diff)
parentd126eddfcac6e54f337e5aa3b9744a46f01e7ba9 (diff)
Merge branch 'advanced-misclick-guard' into 'develop'
Instead of blocking all interaction, only block interaction in places that matter See merge request pleroma/pleroma-fe!1276
Diffstat (limited to 'src/components/timeline/timeline.js')
-rw-r--r--src/components/timeline/timeline.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js
index 368ee81b..cba46daf 100644
--- a/src/components/timeline/timeline.js
+++ b/src/components/timeline/timeline.js
@@ -72,7 +72,7 @@ const Timeline = {
},
classes () {
let rootClasses = !this.embedded ? ['panel', 'panel-default'] : []
- if (this.blockingClicks) rootClasses = rootClasses.concat(['-blocked'])
+ if (this.blockingClicks) rootClasses = rootClasses.concat(['-blocked', '_misclick-prevention'])
return {
root: rootClasses,
header: ['timeline-heading'].concat(!this.embedded ? ['panel-heading'] : []),