فهرست منبع

show toastr when rebuilding has failed

Yuki Takei 6 سال پیش
والد
کامیت
ad9ab5a696
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      src/client/js/components/Admin/FullTextSearchManagement/RebuildIndex.jsx

+ 4 - 0
src/client/js/components/Admin/FullTextSearchManagement/RebuildIndex.jsx

@@ -56,6 +56,10 @@ class RebuildIndex extends React.Component {
         ...data,
       });
     });
+
+    socket.on('admin:rebuildingFailed', (data) => {
+      toastError(new Error(data.error), 'Rebuilding Index has failed.');
+    });
   }
 
   async retrieveIndicesStatus() {