diff --git a/src/components/PageHeading.js b/src/components/PageHeading.js
index 48807cea2..06a27f6eb 100644
--- a/src/components/PageHeading.js
+++ b/src/components/PageHeading.js
@@ -22,7 +22,7 @@ const margins = (iconSize) => {
} else {
return MEDIUM;
}
-}
+};
export const PageHeading = (props) => {
const { id, title, description, imgSrc, color, iconSize, descriptionStyle } = props;
@@ -75,6 +75,6 @@ export const PageHeading = (props) => {
);
-}
+};
export default PageHeading;
diff --git a/src/components/PaginationBar.js b/src/components/PaginationBar.js
index 3efe71add..9f63fc4f5 100644
--- a/src/components/PaginationBar.js
+++ b/src/components/PaginationBar.js
@@ -1,13 +1,13 @@
import React from 'react';
import { useRef, useEffect } from 'react';
import { toNumber } from 'lodash';
-import {Styles, Theme} from '../libs/theme';
+import { Styles, Theme } from '../libs/theme';
//NOTE: This is a new pagination made to fit with the updated table look
//Component does not use third-party libraries for pagination, whereas the old version relies on 'react-pagination'
//Style works with Current Dar Table, but allows for modification with styles passed as a prop (though I expect to do some more fine-tuning with future implementations)
export default function PaginationBar(props) {
- const {pageCount, goToPage, changeTableSize} = props;
+ const { pageCount, goToPage, changeTableSize } = props;
const currentPage = useRef(props.currentPage);
const tableSize = useRef(props.tableSize);
const applyTextHover = (e) => {
@@ -30,35 +30,35 @@ export default function PaginationBar(props) {
goToPage(toNumber(currentPage.current.value) - 1)}
- onMouseEnter={applyTextHover}
- onMouseLeave={(e) => removeTextHover(e, Theme.palette.primary)}>
+ onMouseEnter={applyTextHover}
+ onMouseLeave={(e) => removeTextHover(e, Theme.palette.primary)}>
Prev
Page
goToPage(toNumber(currentPage.current.value))}
- type="text"
- ref={currentPage}
- defaultValue={props.currentPage}
- style={Styles.TABLE.PAGINATION_INPUT} />
+ type="text"
+ ref={currentPage}
+ defaultValue={props.currentPage}
+ style={Styles.TABLE.PAGINATION_INPUT} />
of {pageCount}
goToPage(toNumber(currentPage.current.value) + 1)}
- onMouseEnter={applyTextHover}
- onMouseLeave={(e) => removeTextHover(e, '#1f3b50')}>
+ onMouseEnter={applyTextHover}
+ onMouseLeave={(e) => removeTextHover(e, '#1f3b50')}>
Next
- Rows per page:
+ Rows per page:
changeTableSize(tableSize.current.value)}
- type="text"
- ref={tableSize}
- defaultValue={props.tableSize}
- style={Styles.TABLE.PAGINATION_INPUT} />
+ type="text"
+ ref={tableSize}
+ defaultValue={props.tableSize}
+ style={Styles.TABLE.PAGINATION_INPUT} />
);
diff --git a/src/components/ReadMore.js b/src/components/ReadMore.js
index 0157af1d8..885546989 100644
--- a/src/components/ReadMore.js
+++ b/src/components/ReadMore.js
@@ -22,7 +22,7 @@ export const ReadMore = ({
const getUnderLimit = () => {
return !content || content.length <= charLimit;
- }
+ };
const getInlineContent = () => {
const content = expanded
@@ -35,23 +35,23 @@ export const ReadMore = ({
{content}
);
- }
+ };
const getFormattedContent = () => {
return expanded ? [...content, ...moreContent] : content;
- }
+ };
const getContent = () => {
return inline ? getInlineContent() : getFormattedContent();
- }
+ };
const readMore = () => {
setExpanded(true);
- }
+ };
const readLess = () => {
setExpanded(false);
- }
+ };
const getReadLink = (fun, text, classes) => {
const { linkElements, linkElementsStyle } = inline
diff --git a/src/components/SignIn.js b/src/components/SignIn.js
index 20a9ebd60..dc633d032 100644
--- a/src/components/SignIn.js
+++ b/src/components/SignIn.js
@@ -168,7 +168,7 @@ export const SignIn = (props) => {
/>
}
-
+ ;
};
return (
@@ -188,6 +188,6 @@ export const SignIn = (props) => {
}
);
-}
+};
export default SignIn;