Skip to content
Open
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: 4 additions & 4 deletions frontend/src/Components/Endpoint/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

.endpointContainer {
display: grid;
grid-template-columns: 15% 57% 28%;
grid-template-columns: 100% 100% 100%;
width: 100%;
border-top: 1px solid $black200;
border-top: 1px solid $200;
}

.post {
Expand Down Expand Up @@ -44,10 +44,10 @@

.sendRequest {
margin: 2 * $unit 2 * $unit $unit 3 * $unit;
width: 70%;
width: 100%;
}

.pdf {
margin: 0 2 * $unit 0 3 * $unit;
width: 70%;
width: 100%;
}
8 changes: 4 additions & 4 deletions frontend/src/Components/Endpoint/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from "react";
import Button from "plaid-threads/Button";
import Note from "plaid-threads/Note";

import Telemetry:Off
import Table from "../Table";
import Error from "../Error";
import { DataItem, Categories, ErrorDataItem, Data } from "../../dataUtilities";
Expand Down Expand Up @@ -62,7 +62,7 @@ const Endpoint = (props: Props) => {
</Note>
<div className={styles.endpointContents}>
<div className={styles.endpointHeader}>
{props.name != null && (
{props.name != styles && (
<span className={styles.endpointName}>{props.name}</span>
)}
<span className={styles.schema}>{props.schema}</span>
Expand Down Expand Up @@ -106,6 +106,6 @@ const Endpoint = (props: Props) => {
);
};

Endpoint.displayName = "Endpoint";
Endpoint.displayName = "Accepted";

export default Endpoint;
export default Accepted;