diff options
| author | Shpuld Shpludson <shp@cock.li> | 2020-11-04 06:04:19 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2020-11-04 06:04:19 +0000 |
| commit | dbeecd18acfc14920c49324e08600dadba7127d7 (patch) | |
| tree | d23de6168ff21eb2bd35db7563700f9bf0ad3e60 /src/components/timeline/timeline.js | |
| parent | b485d21ba91629931f2846eafaed7ec04d73c8c8 (diff) | |
| parent | d126eddfcac6e54f337e5aa3b9744a46f01e7ba9 (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.js | 2 |
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'] : []), |
