diff --git a/source/backend/api/Pims.Api.csproj b/source/backend/api/Pims.Api.csproj index 8b5539a366..66071d1c0f 100644 --- a/source/backend/api/Pims.Api.csproj +++ b/source/backend/api/Pims.Api.csproj @@ -2,8 +2,8 @@ 0ef6255f-9ea0-49ec-8c65-c172304b4926 - 5.7.0-93.6 - 5.7.0-93.6 + 5.7.0-93.7 + 5.7.0-93.7 5.7.0.93 true {16BC0468-78F6-4C91-87DA-7403C919E646} diff --git a/source/frontend/package.json b/source/frontend/package.json index 9373c48b8e..85c5f56ca5 100644 --- a/source/frontend/package.json +++ b/source/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "5.7.0-93.6", + "version": "5.7.0-93.7", "private": true, "dependencies": { "@bcgov/bc-sans": "1.0.1", diff --git a/source/frontend/src/features/documents/list/DocumentListView.tsx b/source/frontend/src/features/documents/list/DocumentListView.tsx index 326fa0ee67..9b085b3112 100644 --- a/source/frontend/src/features/documents/list/DocumentListView.tsx +++ b/source/frontend/src/features/documents/list/DocumentListView.tsx @@ -1,5 +1,6 @@ import orderBy from 'lodash/orderBy'; import React, { useContext, useEffect, useMemo, useState } from 'react'; +import { FaPlus } from 'react-icons/fa'; import GenericModal from '@/components/common/GenericModal'; import { Section } from '@/components/common/Section/Section'; @@ -179,6 +180,7 @@ export const DocumentListView: React.FunctionComponent = } addButtonText={props.addButtonText || 'Add Document'} onAdd={() => setIsUploadVisible(true)} /> diff --git a/source/frontend/src/features/notes/list/NoteListView.tsx b/source/frontend/src/features/notes/list/NoteListView.tsx index d248ec012a..6f1303afd5 100644 --- a/source/frontend/src/features/notes/list/NoteListView.tsx +++ b/source/frontend/src/features/notes/list/NoteListView.tsx @@ -1,5 +1,6 @@ import orderBy from 'lodash/orderBy'; import React, { useCallback } from 'react'; +import { FaPlus } from 'react-icons/fa'; import { toast } from 'react-toastify'; import GenericModal from '@/components/common/GenericModal'; @@ -100,6 +101,7 @@ export const NoteListView: React.FunctionComponent} onAdd={openAddNotes} /> }