Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ticdi 327 #140

Merged
merged 2 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions frontend/src/app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ const App: FC = () => {
</ContentWrapper>
}
/>
<Route
path={`/`}
element={
<ContentWrapper>
<DocumentPreview />
</ContentWrapper>
}
/>
{documentTypes.map((docType) => (
<Route
key={docType.id}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/app/content/display/Provisions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const Provisions: FC<ProvisionsProps> = ({

return (
<>
<div>
{/* <div>
<label htmlFor="provisionGroupSelect" style={{ marginRight: '10px' }}>
Select A Group
</label>
Expand All @@ -109,7 +109,7 @@ const Provisions: FC<ProvisionsProps> = ({
</option>
))}
</select>
</div>
</div> */}
<ProvisionsTable
dtid={dtid}
docType={documentType}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const CustomCollapsible: FC<CustomCollapsibleProps> = ({ title, children, isOpen
<div className="mb-2 d-flex align-items-center" >
<FontAwesomeIcon icon={icon as IconProp} className="inlineDiv collapsibleTitle" onClick={toggleCollapsibleOnClick} />
<div className="ml-2 inlineDiv collapsibleTitle boldText" onClick={toggleCollapsibleOnClick}>{title}</div>
{isSpanRequired ? <div className="group-select-container">
{(isSpanRequired && isOpenonClick) ? <div className="group-select-container d-flex">
<label htmlFor="groupSelect" className="group-select-label">Select a Group:</label>
<select id="groupSelect" className="group-select"
onClick={handleClick}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
.max-group-text {
margin-left: 20px;
font-size: 12px;
font-weight: bold;
margin-top: 10px;
}
}

Expand Down Expand Up @@ -197,3 +199,6 @@ input[type="text"] {
.help--algin{
margin-right: 10px;
}
.dtid-text{
margin-left: 7rem !important;
}
Loading
Loading