<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" />
<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="{"file_search":true,"list_resources":true,"fulltext_search":true,"read_resource":true}" />
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 = () => {
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: [
});
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>;
};