about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/generic_not_found/index.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-10-06 22:11:17 +0200
committerThibaut Girka <thib@sitedethib.com>2019-10-10 21:00:13 +0200
commit9ba67c6045427d73f394731e74617b4aa8128557 (patch)
treeaeea9253e9da5846de915258ea75080ba7669946 /app/javascript/flavours/glitch/features/generic_not_found/index.js
parent61631f475163c5640a78ff66f0ac6c053cda2f84 (diff)
[Glitch] Fix performance of home feed regeneration
Port front-end changes from f665901e3c0930fb8b3741f6bc6f6a15dd0343f6 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/generic_not_found/index.js')
-rw-r--r--app/javascript/flavours/glitch/features/generic_not_found/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/generic_not_found/index.js b/app/javascript/flavours/glitch/features/generic_not_found/index.js
index d01a1ba47..4412adaed 100644
--- a/app/javascript/flavours/glitch/features/generic_not_found/index.js
+++ b/app/javascript/flavours/glitch/features/generic_not_found/index.js
@@ -4,7 +4,7 @@ import MissingIndicator from 'flavours/glitch/components/missing_indicator';
 
 const GenericNotFound = () => (
   <Column>
-    <MissingIndicator />
+    <MissingIndicator fullPage />
   </Column>
 );