]> PHS Git Server - phs-home.git/commitdiff
Fixing missing files.
authorcharleswrayjr <charleswrayjr@gmail.com>
Thu, 4 Sep 2025 07:42:33 +0000 (02:42 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Thu, 4 Sep 2025 07:42:33 +0000 (02:42 -0500)
.idea/workspace.xml
src/app/views/Dashboard/Dashboard.jsx

index 22d90a6ad37a3ee8889ca996641c93986c7bf4ab..ded5bea56a6ac0345ce5a9e385a088e6e1ae7f2c 100644 (file)
@@ -4,16 +4,9 @@
     <option name="autoReloadType" value="SELECTIVE" />
   </component>
   <component name="ChangeListManager">
-    <list default="true" id="ab92709f-5288-4a55-873b-517f6adb96d1" name="Changes" comment="changing the run file name.">
-      <change afterPath="$PROJECT_DIR$/public/favicon.ico" afterDir="false" />
-      <change afterPath="$PROJECT_DIR$/public/index.html" afterDir="false" />
-      <change afterPath="$PROJECT_DIR$/public/logo192.png" afterDir="false" />
-      <change afterPath="$PROJECT_DIR$/public/logo512.png" afterDir="false" />
-      <change afterPath="$PROJECT_DIR$/public/manifest.json" afterDir="false" />
-      <change afterPath="$PROJECT_DIR$/public/robots.txt" afterDir="false" />
+    <list default="true" id="ab92709f-5288-4a55-873b-517f6adb96d1" name="Changes" comment="Fixing missing files.">
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/pre-build.sh" beforeDir="false" afterPath="$PROJECT_DIR$/pre-build.sh" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/src/app/views/Dashboard/Dashboard.jsx" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/views/Dashboard/Dashboard.jsx" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -79,7 +72,7 @@
       <option name="number" value="Default" />
       <option name="presentableId" value="Default" />
       <updated>1756966236399</updated>
-      <workItem from="1756966239169" duration="3046000" />
+      <workItem from="1756966239169" duration="3840000" />
     </task>
     <task id="LOCAL-00001" summary="Initial commit.">
       <option name="closed" value="true" />
       <option name="project" value="LOCAL" />
       <updated>1756968254499</updated>
     </task>
-    <option name="localTasksCounter" value="4" />
+    <task id="LOCAL-00004" summary="Fixing missing files.">
+      <option name="closed" value="true" />
+      <created>1756970755370</created>
+      <option name="number" value="00004" />
+      <option name="presentableId" value="LOCAL-00004" />
+      <option name="project" value="LOCAL" />
+      <updated>1756970755370</updated>
+    </task>
+    <option name="localTasksCounter" value="5" />
     <servers />
   </component>
   <component name="TypeScriptGeneratedFilesManager">
   <component name="VcsManagerConfiguration">
     <MESSAGE value="Initial commit." />
     <MESSAGE value="changing the run file name." />
-    <option name="LAST_COMMIT_MESSAGE" value="changing the run file name." />
+    <MESSAGE value="Fixing missing files." />
+    <option name="LAST_COMMIT_MESSAGE" value="Fixing missing files." />
   </component>
   <component name="ai.zencoder.plugin.mcp">
     <option name="internalToolsState" value="{&quot;file_search&quot;:true,&quot;list_resources&quot;:true,&quot;fulltext_search&quot;:true,&quot;read_resource&quot;:true}" />
index 48da0e01beefd0a66624607fc702d652e6bab9d4..6157ab8235199fce62f40650015bacf0db1ce4ee 100644 (file)
@@ -2,8 +2,8 @@ import React, { useState, useEffect } from 'react';
 import { useMaterialReactTable, MaterialReactTable } from 'material-react-table';
 import { Container, IconButton } from '@mui/material';
 import { VisibilityOutlined } from '@mui/icons-material';
-import { FormService } from '../../services';
-import { FormDetail } from '../../components';
+// import { FormService } from '../../services';
+// import { FormDetail } from '../../components';
 import { getFormattedDate } from '../../utils';
 
 const Dashboard = () => {
@@ -13,20 +13,20 @@ const Dashboard = () => {
   const [selectedForm, setSelectedForm] = useState( null );
 
 
-  useEffect( () => {
-    FormService.get( null, null ).then( response => {
-      console.log('response', response);
-      setData(response);
-    });
-  }, [] );
-
-  useEffect( () => {
-    if (selectedFormID) {
-      FormService.get( null, selectedFormID ).then( response => {
-        setSelectedForm( response );
-      });
-    }
-  }, [selectedFormID] );
+  // useEffect( () => {
+  //   FormService.get( null, null ).then( response => {
+  //     console.log('response', response);
+  //     setData(response);
+  //   });
+  // }, [] );
+  //
+  // useEffect( () => {
+  //   if (selectedFormID) {
+  //     FormService.get( null, selectedFormID ).then( response => {
+  //       setSelectedForm( response );
+  //     });
+  //   }
+  // }, [selectedFormID] );
 
   const table = useMaterialReactTable({
     columns: [
@@ -90,7 +90,7 @@ const Dashboard = () => {
   });
   return <Container maxWidth='xl' >
 
-    <FormDetail isOpen={detailOpen} setOpen={setDetailOpen} inspection={selectedForm} setSelectedForm={setSelectedForm} setSelectedFormID={setSelectedFormID}/>
+    {/*<FormDetail isOpen={detailOpen} setOpen={setDetailOpen} inspection={selectedForm} setSelectedForm={setSelectedForm} setSelectedFormID={setSelectedFormID}/>*/}
     <MaterialReactTable table={table} />
   </Container>;
 };